Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions app/components/UI/Navbar/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -937,6 +937,10 @@ export function getWalletNavbarOptions(
isRewardsEnabled = false,
) {
const innerStyles = StyleSheet.create({
headerContainer: {
height: 72,
alignItems: 'center',
},
headerIcon: {
color: themeColors.primary.default,
},
Expand Down Expand Up @@ -1079,6 +1083,7 @@ export function getWalletNavbarOptions(
return {
header: () => (
<HeaderBase
style={innerStyles.headerContainer}
includesTopInset
variant={HeaderBaseVariant.Display}
startAccessory={
Expand Down
10 changes: 10 additions & 0 deletions app/components/Views/Wallet/__snapshots__/index.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,11 @@ exports[`Wallet Conditional Rendering should render banner when basic functional
style={
[
{
"alignItems": "center",
"backgroundColor": "#ffffff",
"flexDirection": "row",
"gap": 16,
"height": 72,
},
{
"marginTop": 0,
Expand Down Expand Up @@ -1222,9 +1224,11 @@ exports[`Wallet Conditional Rendering should render loader when no selected acco
style={
[
{
"alignItems": "center",
"backgroundColor": "#ffffff",
"flexDirection": "row",
"gap": 16,
"height": 72,
},
{
"marginTop": 0,
Expand Down Expand Up @@ -2405,9 +2409,11 @@ exports[`Wallet should render correctly 1`] = `
style={
[
{
"alignItems": "center",
"backgroundColor": "#ffffff",
"flexDirection": "row",
"gap": 16,
"height": 72,
},
{
"marginTop": 0,
Expand Down Expand Up @@ -3588,9 +3594,11 @@ exports[`Wallet should render correctly when Solana support is enabled 1`] = `
style={
[
{
"alignItems": "center",
"backgroundColor": "#ffffff",
"flexDirection": "row",
"gap": 16,
"height": 72,
},
{
"marginTop": 0,
Expand Down Expand Up @@ -4771,9 +4779,11 @@ exports[`Wallet should render correctly when there are no detected tokens 1`] =
style={
[
{
"alignItems": "center",
"backgroundColor": "#ffffff",
"flexDirection": "row",
"gap": 16,
"height": 72,
},
{
"marginTop": 0,
Expand Down
Loading