@@ -94,7 +94,7 @@ const NavBar = ({ isSupported }: NavBarType) => {
9494 sx = { {
9595 backgroundColor : 'var(--accent-100)' ,
9696 borderBottom : '1px solid var(--accent-200)' ,
97- minHeight : '56px ' ,
97+ minHeight : '62px ' ,
9898 position : 'fixed' ,
9999 top : 0 ,
100100 left : 0 ,
@@ -104,15 +104,15 @@ const NavBar = ({ isSupported }: NavBarType) => {
104104 boxShadow : 'none' ,
105105 } }
106106 >
107- < Toolbar sx = { { padding : 0 } } >
107+ < Toolbar sx = { { padding : 0 , minHeight : '62px' , alignItems : 'center' } } >
108108 < Container
109109 maxWidth = { false }
110110 sx = { {
111111 maxWidth : '1440px' ,
112112 padding :
113113 navBarOptions . title !== null
114- ? { mobile : '4px 16px' , tablet : '4px 32px' }
115- : { mobile : '8px 16px' , tablet : '8px 32px' } ,
114+ ? { mobile : '4px 16px' , tablet : '6px 32px' }
115+ : { mobile : '8px 16px' , tablet : '6px 32px' } ,
116116 display : 'flex' ,
117117 alignItems : 'center' ,
118118 justifyContent : 'space-between' ,
@@ -452,14 +452,26 @@ const NavBar = ({ isSupported }: NavBarType) => {
452452 < IconButton
453453 aria-label = { t ( 'tr_back' ) }
454454 onClick = { handleBack }
455- disableHover
455+ sx = { {
456+ marginLeft : '-10px' ,
457+ '&:hover' : {
458+ backgroundColor : 'var(--accent-200)' ,
459+ '& svg' : {
460+ transform : 'translateX(4px)' ,
461+ } ,
462+ } ,
463+ '& svg' : {
464+ transition : 'transform 0.2s ease-in-out' ,
465+ } ,
466+ } }
456467 >
457468 < IconArrowBack color = "var(--black)" />
458469 </ IconButton >
459470 < Box
460471 sx = { {
461472 display : 'flex' ,
462473 flexDirection : 'column' ,
474+ marginLeft : '-8px' ,
463475 } }
464476 >
465477 < Typography
@@ -489,6 +501,13 @@ const NavBar = ({ isSupported }: NavBarType) => {
489501 < IconButton
490502 onClick = { handleQuickSettings }
491503 aria-label = { t ( 'tr_quickSettings' ) }
504+ sx = { {
505+ marginRight : '-8px' ,
506+ transition : 'background-color 50ms ease-in-out' ,
507+ '&:hover' : {
508+ backgroundColor : 'var(--accent-200)' ,
509+ } ,
510+ } }
492511 >
493512 < IconSettings color = "var(--black)" />
494513 </ IconButton >
@@ -498,15 +517,15 @@ const NavBar = ({ isSupported }: NavBarType) => {
498517 )
499518 ) }
500519 </ Box >
501- { ! ! tablet688Up && (
520+ { ! ! tablet688Up && navBarOptions . buttons && (
502521 < Box
503522 sx = { {
504523 display : 'flex' ,
505524 gap : '8px' ,
506525 padding : '4px' ,
507526 flexDirection : 'row' ,
508527 backgroundColor : 'var(--accent-150)' ,
509- borderRadius : 'var(--radius-l )' ,
528+ borderRadius : 'var(--radius-xl )' ,
510529 } }
511530 >
512531 { navBarOptions . buttons }
0 commit comments