From b1f19e2cdd2d71d13feebd716f936341b81ac3c1 Mon Sep 17 00:00:00 2001 From: Ruben Date: Wed, 14 Jan 2026 20:25:51 +0100 Subject: [PATCH] Add inherit font to table elements --- custom/styles/base.css | 1 + 1 file changed, 1 insertion(+) diff --git a/custom/styles/base.css b/custom/styles/base.css index 6bf7e4a..f763f71 100644 --- a/custom/styles/base.css +++ b/custom/styles/base.css @@ -134,6 +134,7 @@ table { background-color: transparent; color: var(--color-grey); outline: .08rem var(--color-grey) solid; + font: inherit; &:hover { background-color: var(--color-grey); color: white; outline: none } &:active, &.active { background-color: var(--color-green); color: white; outline: none } &:focus { background-color: var(--color-green); color: white; outline: none }