diff options
| author | Ariel Costas Guerrero <ariel@costas.dev> | 2025-10-12 22:49:13 +0200 |
|---|---|---|
| committer | Ariel Costas Guerrero <ariel@costas.dev> | 2025-10-12 22:49:13 +0200 |
| commit | cbdb2ee1547fcfbef8c874da60b17eee80b5fa18 (patch) | |
| tree | f1adc98515c2ac7681dcd0902b9ebcc2997d6b73 /src/layouts/Layout.astro | |
| parent | dcc806eff41da24ee6b5984d011f62bc9f4f00ee (diff) | |
Get rid of trajectory and portfolio
Diffstat (limited to 'src/layouts/Layout.astro')
| -rw-r--r-- | src/layouts/Layout.astro | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 6e389e2..3aa2dd0 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -1,6 +1,4 @@ --- -import "@fontsource-variable/roboto"; -import "@fontsource-variable/roboto-mono"; import Header from "../partials/Header.astro"; import Footer from "../partials/Footer.astro"; @@ -137,8 +135,19 @@ const { title, description, empty } = Astro.props; background-color: color.adjust($accent, $alpha: -0.85); } + ul:has(li) { + padding-left: 1.25rem; + margin-top: 0; + margin-bottom: 1.5rem; + + display: flex; + flex-direction: column; + gap: 0.5rem; + } + li > time { - font-family: $monoFontStack; + font-size: 0.95rem; + user-select: none; } main { |
