mobile header improvements
This commit is contained in:
parent
fec58f2465
commit
86c2fb4a73
2 changed files with 3 additions and 3 deletions
|
@ -59,6 +59,7 @@
|
|||
|
||||
.contentWrapper {
|
||||
background: var(--bg);
|
||||
margin-left: var(--gap);
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 768px) {
|
||||
|
|
|
@ -51,7 +51,6 @@ const Header = () => {
|
|||
aria-label={tab.name}
|
||||
aria-current={isActive ? "page" : undefined}
|
||||
data-tab={tab.value}
|
||||
width="auto"
|
||||
>
|
||||
{tab.name ? tab.name : undefined}
|
||||
</Button>
|
||||
|
@ -59,7 +58,7 @@ const Header = () => {
|
|||
} else if (tab.href) {
|
||||
return (
|
||||
<Link key={tab.value} href={tab.href} data-tab={tab.value}>
|
||||
<Button className={activeStyle} iconLeft={tab.icon} width="auto">
|
||||
<Button className={activeStyle} iconLeft={tab.icon}>
|
||||
{tab.name ? tab.name : undefined}
|
||||
</Button>
|
||||
</Link>
|
||||
|
@ -178,7 +177,7 @@ const Header = () => {
|
|||
className={clsx(buttonStyles.button, styles.mobile)}
|
||||
asChild
|
||||
>
|
||||
<Button aria-label="Menu">
|
||||
<Button aria-label="Menu" height="auto">
|
||||
<Menu />
|
||||
</Button>
|
||||
</DropdownMenu.Trigger>
|
||||
|
|
Loading…
Reference in a new issue