Skip to content

Commit a9ada48

Browse files
committed
Add height and width utilities for 14 spacing units; update logo size in header
1 parent a3d41c0 commit a9ada48

2 files changed

Lines changed: 9 additions & 3 deletions

File tree

content/tailwind.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -316,6 +316,9 @@
316316
.h-12 {
317317
height: calc(var(--spacing) * 12);
318318
}
319+
.h-14 {
320+
height: calc(var(--spacing) * 14);
321+
}
319322
.max-h-48 {
320323
max-height: calc(var(--spacing) * 48);
321324
}
@@ -346,6 +349,9 @@
346349
.w-12 {
347350
width: calc(var(--spacing) * 12);
348351
}
352+
.w-14 {
353+
width: calc(var(--spacing) * 14);
354+
}
349355
.w-full {
350356
width: 100%;
351357
}

index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@
3636

3737
<!-- App Title -->
3838
<header class="flex items-center justify-between gap-3 mb-3">
39-
<h1 class="flex items-center gap-3 text-xl sm:text-2xl font-bold truncate min-w-0">
40-
<img class="h-10 w-10 sm:h-12 sm:w-12 flex-shrink-0" src="content/wardrive.png" alt="MeshCore" />
39+
<h1 class="flex items-center gap-3 text-lg sm:text-xl font-bold truncate min-w-0">
40+
<img class="h-12 w-12 sm:h-14 sm:w-14 flex-shrink-0" src="content/wardrive.png" alt="MeshCore" />
4141
<span class="truncate">MeshMapper</span>
4242
</h1>
43-
<span id="appVersion" class="text-xs bg-slate-800 px-2 py-1 rounded-md text-slate-400 flex-shrink-0">v1.0</span>
43+
<span id="appVersion" class="text-xs bg-slate-800 border border-slate-700 px-2 py-1 rounded-full text-slate-400 flex-shrink-0">v1.0</span>
4444
</header>
4545

4646
<!-- Connection Status Bar with Settings Panel -->

0 commit comments

Comments
 (0)