feat: add table styles

This commit is contained in:
Iain Learmonth 2026-04-13 21:03:22 +01:00
parent 629578bdb4
commit 565fa157d3

View file

@ -139,3 +139,20 @@ figcaption p {
margin: 4px 0;
text-align: center;
}
table {
margin: 0 auto;
min-width: 25%;
max-width: 100%;
border-collapse: collapse;
background-color: v.$color_hr;
}
th, td {
border: 1px solid v.$color_tertiary;
padding: 3px;
}
table caption {
font-weight: bold;
}