feature/mobile-menu #11

Merged
TobaOjo merged 4 commits from feature/mobile-menu into develop 2025-11-14 15:41:32 +00:00
19 changed files with 179 additions and 435 deletions
Showing only changes of commit be0a047d30 - Show all commits

View File

@@ -58,12 +58,29 @@ export default function Header() {
<div onClick={refreshBrowser}> <div onClick={refreshBrowser}>
<FontAwesomeIcon icon={faRotate} size="2x" /> <FontAwesomeIcon icon={faRotate} size="2x" />
</div> </div>
<SoundBtn /> <div className="flex">
<Link to={"/session-settings"}> <SoundBtn />
</div>
<div className="md:hidden">
<ul className="flex flex-col">
<li>
<Link to={"/session-settings"}>
<FontAwesomeIcon className="text-white" icon={faListCheck} size="2x" />
</Link>
</li>
<li>
<Link to={"/system-settings"}>
<FontAwesomeIcon className="text-white" icon={faGear} size="2x" />
</Link>
</li>
</ul>
</div>
<Link className="hidden md:flex" to={"/session-settings"}>
<FontAwesomeIcon className="text-white" icon={faListCheck} size="2x" /> <FontAwesomeIcon className="text-white" icon={faListCheck} size="2x" />
</Link> </Link>
<Link to={"/system-settings"}> <Link className="hidden md:flex" to={"/system-settings"}>
<FontAwesomeIcon className="text-white" icon={faGear} size="2x" /> <FontAwesomeIcon className="text-white" icon={faGear} size="2x" />
</Link> </Link>
</div> </div>

View File

@@ -33,7 +33,7 @@ body {
} }
.arrow-outline path { .arrow-outline path {
stroke: black; /* outline color */ stroke: black;
stroke-width: 20px; /* thickness of outline (tweak this) */ stroke-width: 20px;
stroke-linejoin: round; stroke-linejoin: round;
} }