Update spacing and coloring of basic elements

This commit is contained in:
Gabriel Arazas 2023-02-21 14:36:27 +08:00
parent f80b9be1c5
commit eeb86566cc
2 changed files with 6 additions and 3 deletions

View File

@ -22,6 +22,8 @@ and this project adheres to https://semver.org/spec/v2.0.0.html[Semantic Version
== Updated == Updated
- Spacing between basic elements (i.e., `<p>`).
- Responsive font sizing. - Responsive font sizing.

View File

@ -63,7 +63,6 @@ dd, li, p, td {
p { p {
margin-top: 1rem; margin-top: 1rem;
margin-bottom: 1rem;
} }
dd { dd {
@ -83,13 +82,11 @@ code, pre {
} }
code { code {
background: var(--base01);
font-family: var(--mono-family); font-family: var(--mono-family);
font-size: 0.9em; font-size: 0.9em;
} }
pre { pre {
background: var(--base01);
color: var(--base05); color: var(--base05);
border: var(--border-style); border: var(--border-style);
font-family: var(--mono-family); font-family: var(--mono-family);
@ -144,6 +141,10 @@ table {
caption { caption {
margin: 1em; margin: 1em;
} }
tr td > p {
margin: 0;
}
} }
@mixin table-item-align { @mixin table-item-align {