From 78d0fec795ea9e7f60853b3d5a6d029621d3bb25 Mon Sep 17 00:00:00 2001 From: Ayo Date: Mon, 5 Jun 2023 17:13:41 +0200 Subject: [PATCH] style: add fix for older cached items --- src/layouts/Layout.astro | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index c86b688..2c788e2 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -44,4 +44,10 @@ const { title } = Astro.props; html * { font-family: var(--system-ui); } + + // fix for older cached items + p, table, ul { + margin: 1em 0; + font-size: 20px; + }