From 227b8904686de80dd5b9e18cf1f798cd6fee2637 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bruno=20Ryb=C3=A1rsky?= Date: Wed, 14 Feb 2024 21:03:43 +0100 Subject: [PATCH] Fix css on tables --- assets/style.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/assets/style.css b/assets/style.css index f90e8f3..0ce1861 100644 --- a/assets/style.css +++ b/assets/style.css @@ -103,10 +103,10 @@ footer { text-align: center; } -table.list-table>tbody, -table.list-table>tbody>th, -table.list-table>tbody>tr, -table.list-table>tbody>tr>td { +table>tbody, +table>tbody>tr, +table>tbody>tr>th, +table>tbody>tr>td { border: 2px solid var(--primary); border-collapse: collapse; }