Bumped to latest zona version

This commit is contained in:
Daniel Fichtinger 2025-07-03 02:21:24 -04:00
parent 28c1aa1da6
commit 58d68b4639
4 changed files with 24 additions and 15 deletions

View file

@ -141,13 +141,21 @@ pre {
overflow-x: auto;
}
code {
background-color: #1d1d1d;
color: #d5d5d5;
/* Inline code styling */
:not(pre) > code {
padding: 0.2em 0.4em;
border-radius: 3px;
background-color: #1d1d1d;
color: #d5d5d5;
font-size: 0.85em;
}
/* Block code styling (inherits from pre) */
pre code {
padding: 0;
border-radius: 0;
background: none;
}
small {
font-size: 0.95rem;
@ -234,3 +242,5 @@ small a {
color: var(--main-small-text-color);
}