diff --git a/src/components/Window.astro b/src/components/Window.astro index b42af8c..55d99fe 100644 --- a/src/components/Window.astro +++ b/src/components/Window.astro @@ -21,6 +21,7 @@ import XmarkIcon from "@assets/svg/xmark.svg"; clip-path: var(--clip-window-inner); } .title-bar { + background-color: var(--crust); user-select: none; display: flex; justify-content: space-between; @@ -51,7 +52,7 @@ import XmarkIcon from "@assets/svg/xmark.svg"; .window-body { gap: 1rem; display: flex; - padding: 0 1rem 1rem 1rem; + padding: 1rem; flex-direction: column; } @media (pointer: coarse) { diff --git a/src/css/global.css b/src/css/global.css index a188ab6..0e7aa9d 100644 --- a/src/css/global.css +++ b/src/css/global.css @@ -21,9 +21,19 @@ body { a { color: #89b4fa; } -h1,h2,h3,h4,h5,h6,p,ul { +h1, +h2, +h3, +h4, +h5, +h6, +p, +ul { margin: 0; } -h4,h5,h6,sub { - color: var(--overlay0) +h4, +h5, +h6, +sub { + color: var(--overlay0); }