Skip to content

Commit fdb3fda

Browse files
committed
Add height and width utilities for 10 and 12 spacing units; update logo size in header
1 parent 044ca0c commit fdb3fda

2 files changed

Lines changed: 13 additions & 1 deletion

File tree

content/tailwind.css

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -310,6 +310,12 @@
310310
.h-8 {
311311
height: calc(var(--spacing) * 8);
312312
}
313+
.h-10 {
314+
height: calc(var(--spacing) * 10);
315+
}
316+
.h-12 {
317+
height: calc(var(--spacing) * 12);
318+
}
313319
.max-h-48 {
314320
max-height: calc(var(--spacing) * 48);
315321
}
@@ -334,6 +340,12 @@
334340
.w-8 {
335341
width: calc(var(--spacing) * 8);
336342
}
343+
.w-10 {
344+
width: calc(var(--spacing) * 10);
345+
}
346+
.w-12 {
347+
width: calc(var(--spacing) * 12);
348+
}
337349
.w-full {
338350
width: 100%;
339351
}

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<!-- App Title -->
3838
<header class="flex items-center justify-between gap-2">
3939
<h1 class="flex items-center gap-2 text-lg sm:text-xl font-semibold truncate min-w-0">
40-
<img class="h-8 w-8 sm:h-10 sm:w-10 flex-shrink-0" src="content/wardrive.png" alt="MeshCore" />
40+
<img class="h-10 w-10 sm:h-12 sm:w-12 flex-shrink-0" src="content/wardrive.png" alt="MeshCore" />
4141
<span class="truncate">MeshMapper</span>
4242
</h1>
4343
<span id="appVersion" class="text-xs text-slate-400 flex-shrink-0 whitespace-nowrap">v1.0</span>

0 commit comments

Comments
 (0)