mirror of
https://github.com/clucraft/PriceGhost.git
synced 2026-07-05 16:02:12 +02:00
Fix navbar button heights for visual consistency
Match theme toggle and profile dropdown to same 42px height Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
a2b632d35b
commit
4acd5c1432
1 changed files with 7 additions and 2 deletions
|
|
@ -102,7 +102,11 @@ export default function Layout({ children }: LayoutProps) {
|
||||||
background: var(--background);
|
background: var(--background);
|
||||||
border: 1px solid var(--border);
|
border: 1px solid var(--border);
|
||||||
border-radius: 0.5rem;
|
border-radius: 0.5rem;
|
||||||
padding: 0.5rem;
|
padding: 0 0.75rem;
|
||||||
|
height: 42px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
font-size: 1.25rem;
|
font-size: 1.25rem;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
|
|
@ -131,7 +135,8 @@ export default function Layout({ children }: LayoutProps) {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 0.5rem;
|
gap: 0.5rem;
|
||||||
padding: 0.5rem 0.75rem;
|
padding: 0 0.75rem;
|
||||||
|
height: 42px;
|
||||||
background: var(--background);
|
background: var(--background);
|
||||||
border: 1px solid var(--border);
|
border: 1px solid var(--border);
|
||||||
border-radius: 0.5rem;
|
border-radius: 0.5rem;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue