increasing sizing

This commit is contained in:
2025-09-17 14:39:56 +01:00
parent 0b7ab3b0de
commit 3811b1f366
10 changed files with 25 additions and 31 deletions

View File

@@ -75,17 +75,21 @@ export default function Header() {
</Link>
</div>
{/* Right: Texts stacked + icons */}
<div className="flex items-center space-x-12">
<div className="flex items-center space-x-24">
<div className="flex flex-col leading-tight text-white text-sm tabular-nums">
<h2>Local: {localStr}</h2>
<h2>UTC: {utcStr}</h2>
</div>
<div className="flex flex-row space-x-2">
<div className="flex flex-row space-x-8">
<Link to={"/session-settings"}>
<FontAwesomeIcon className="text-white" icon={faListCheck} />
<FontAwesomeIcon
className="text-white"
icon={faListCheck}
size="2x"
/>
</Link>
<Link to={"/system-settings"}>
<FontAwesomeIcon className="text-white" icon={faGear} />
<FontAwesomeIcon className="text-white" icon={faGear} size="2x" />
</Link>
</div>
</div>