From 565fa157d39030fb04f1c6c647c36340d284f4e3 Mon Sep 17 00:00:00 2001 From: irl Date: Mon, 13 Apr 2026 21:03:22 +0100 Subject: [PATCH] feat: add table styles --- assets/css/main.scss | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/assets/css/main.scss b/assets/css/main.scss index 80cccbe..a3c29de 100644 --- a/assets/css/main.scss +++ b/assets/css/main.scss @@ -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; +} \ No newline at end of file