fix(style): fix styling for tables

This commit is contained in:
Leo Gavilieau 2023-05-21 22:26:58 +02:00
parent a7afa7afdf
commit ccdc99dbb1
No known key found for this signature in database
GPG Key ID: 9F86E792898BD16B
1 changed files with 8 additions and 0 deletions

View File

@ -49,6 +49,13 @@ header,main,footer {
width: var(--mainSize);
}
table, td {
border: 1px outset;
padding: 5px
}
table { border-collapse: collapse; }
/* Header styling (logo, nav etc.) */
header {
@ -69,6 +76,7 @@ footer {
border-top: 2px solid var(--linkColor);
border-radius: 0.5rem;
padding-top:0.5rem;
margin-top: 3rem !important;
}
footer p { margin: 0.2em 0 0.2em 0; }