fix: menubar scrolling on mobile
This commit is contained in:
parent
852ab28e31
commit
30444235d2
1 changed files with 18 additions and 16 deletions
|
|
@ -24,7 +24,8 @@ function Menubar() {
|
||||||
return (
|
return (
|
||||||
<DialogProvider>
|
<DialogProvider>
|
||||||
<UIMenubar className="rounded-none border-t-0 border-x-0 col-span-3">
|
<UIMenubar className="rounded-none border-t-0 border-x-0 col-span-3">
|
||||||
<Link to={{ pathname: "/" }} className="px-4 w-40 flex gap-2 items-center">
|
<div className="w-full flex items-center space-x-1 overflow-x-auto">
|
||||||
|
<Link to={{ pathname: "/" }} className="px-4 min-w-40 flex gap-2 items-center">
|
||||||
<BlockmaticIcon className="h-full w-8" />
|
<BlockmaticIcon className="h-full w-8" />
|
||||||
<BlockmaticText className="h-full w-full" />
|
<BlockmaticText className="h-full w-full" />
|
||||||
</Link>
|
</Link>
|
||||||
|
|
@ -34,7 +35,7 @@ function Menubar() {
|
||||||
<SelectMenu />
|
<SelectMenu />
|
||||||
<ViewMenu />
|
<ViewMenu />
|
||||||
|
|
||||||
<div className="absolute right-3 grid grid-cols-3 items-center gap-1">
|
<div className="!ml-auto pl-4 grid grid-cols-3 items-center gap-1 min-w-20">
|
||||||
<ThemeIcon inApp />
|
<ThemeIcon inApp />
|
||||||
<a href="https://github.com/trafficlunar/blockmatic" className="w-5">
|
<a href="https://github.com/trafficlunar/blockmatic" className="w-5">
|
||||||
<GithubIcon fill={isDark ? "white" : "black"} />
|
<GithubIcon fill={isDark ? "white" : "black"} />
|
||||||
|
|
@ -43,6 +44,7 @@ function Menubar() {
|
||||||
<TrafficConeIcon fill={isDark ? "white" : "black"} className="hover:fill-orange-400 transition-colors" />
|
<TrafficConeIcon fill={isDark ? "white" : "black"} className="hover:fill-orange-400 transition-colors" />
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</UIMenubar>
|
</UIMenubar>
|
||||||
</DialogProvider>
|
</DialogProvider>
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue