1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-21 21:33:18 +01:00

chore: minor fix on padding and regression

This commit is contained in:
Amir Raminfar
2024-05-23 18:27:42 -07:00
parent aed171cb6b
commit 2e774481c1
2 changed files with 2 additions and 2 deletions

View File

@@ -128,7 +128,7 @@ const menuItems = computed(() => {
const singular = []; const singular = [];
for (const item of sortedContainers.value) { for (const item of sortedContainers.value) {
const namespace = item.group; const namespace = item.namespace;
if (debouncedPinnedContainers.value.has(item.name)) { if (debouncedPinnedContainers.value.has(item.name)) {
pinned.push(item); pinned.push(item);
} else if (namespace) { } else if (namespace) {

View File

@@ -2,7 +2,7 @@
<section :class="{ 'h-screen min-h-0': scrollable }" class="flex flex-col"> <section :class="{ 'h-screen min-h-0': scrollable }" class="flex flex-col">
<header <header
v-if="$slots.header" v-if="$slots.header"
class="sticky top-[70px] z-[2] border-b border-base-content/10 bg-base py-1 shadow-[1px_1px_2px_0_rgb(0,0,0,0.05)] md:top-0 md:py-2" class="sticky top-[70px] z-[2] border-b border-base-content/10 bg-base py-2 shadow-[1px_1px_2px_0_rgb(0,0,0,0.05)] md:top-0"
> >
<slot name="header"></slot> <slot name="header"></slot>
</header> </header>