style: add fix for older cached items

This commit is contained in:
Ayo 2023-06-05 17:13:41 +02:00
parent 18027d0198
commit 78d0fec795

View file

@ -44,4 +44,10 @@ const { title } = Astro.props;
html * { html * {
font-family: var(--system-ui); font-family: var(--system-ui);
} }
// fix for older cached items
p, table, ul {
margin: 1em 0;
font-size: 20px;
}
</style> </style>