diff --git a/src/app.css b/src/app.css index 8db1515..8d856a9 100644 --- a/src/app.css +++ b/src/app.css @@ -61,7 +61,7 @@ h3 { } .dash-grid-2 { - @apply grid grid-cols-2 gap-8; + @apply mt-2 grid grid-cols-2; } .dash-tile-rect { @@ -70,7 +70,7 @@ h3 { } .dash-tile-square { - @apply card border-primary bg-base-100 my-1 rounded-lg border p-6 transition-shadow hover:shadow-md; + @apply card border-primary bg-base-100 mx-10 my-1 rounded-lg border p-3 transition-shadow hover:shadow-md; @apply flex flex-col items-center justify-center text-center; @apply cursor-pointer; /* Height constraints relative to .list-item */ @@ -87,8 +87,8 @@ h3 { } .footer { - @apply bg-primary text-primary-content h-20; - padding-bottom: env(safe-area-inset-bottom); + @apply bg-primary text-primary-content h-16; + /* padding-bottom: env(safe-area-inset-bottom); */ padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); } @@ -106,15 +106,15 @@ h3 { } .header-container-logo { - @apply rounded-xl bg-white p-2 shadow-sm; + @apply flex-shrink-0 rounded-xl bg-white p-2 shadow-sm; } .header-content { - @apply flex h-20 w-full flex-row items-center justify-between px-2 sm:px-6 lg:px-8; + @apply flex h-20 w-full flex-row items-center justify-between px-5; } .header-left { - @apply flex items-center space-x-4 px-2; + @apply flex items-center space-x-4; } .view { @@ -122,13 +122,14 @@ h3 { } .view-header { - @apply bg-accent max-w-full p-3; + @apply bg-accent h-14 max-w-full px-5; /* height: 4.5rem; */ display: grid; grid-template-columns: 1fr auto; align-items: center; } + .view-layout { /* DASH */ @apply max-w-full justify-around space-y-4 px-2; @@ -243,6 +244,46 @@ h3 { @apply mx-1 mb-2 w-full; } +.help-section { + border-bottom: 1px solid hsl(var(--bc) / 0.1); +} + +.help-section:last-child { + border-bottom: none; + padding-bottom: 0; +} + +.screenshot-container { + display: flex; + flex-direction: column; + align-items: center; +} + +.breadcrumb { + font-size: 1.25rem; + font-weight: 700; +} + +.breadcrumb-list { + @apply flex items-center space-x-2 m-0 p-0 list-none; +} + +.breadcrumb-item { + @apply flex items-center; +} + +.breadcrumb-link { + @apply text-accent-content hover:text-white transition-colors underline bg-transparent border-none cursor-pointer p-0 font-normal; +} + +.breadcrumb-current { + @apply text-accent-content font-bold; +} + +.breadcrumb-separator { + @apply text-accent-content/70 mx-2 font-normal; +} + @media (max-width: 375px) { .dash-grid { @apply grid-cols-1; diff --git a/src/lib/components/layouts/Header.svelte b/src/lib/components/layouts/Header.svelte index dc573ac..99e41af 100644 --- a/src/lib/components/layouts/Header.svelte +++ b/src/lib/components/layouts/Header.svelte @@ -25,12 +25,12 @@
{version}
+