From 84af6427d8205b1882b9f9df11ce394f96d6b792 Mon Sep 17 00:00:00 2001 From: Anhgelus Morhtuuzh Date: Mon, 22 Dec 2025 15:07:55 +0100 Subject: feat(backend): admin dashboard --- frontend/scss/general.scss | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) (limited to 'frontend/scss/general.scss') diff --git a/frontend/scss/general.scss b/frontend/scss/general.scss index bab3ada..28c1c81 100644 --- a/frontend/scss/general.scss +++ b/frontend/scss/general.scss @@ -180,3 +180,38 @@ pre { white-space: break-spaces; } } + +table { + width: calc(100% + 4rem); + + margin: 2rem -2rem; + padding: 0 1rem; + + line-height: var(--line-height-smaller); +} + +thead { + font-weight: bold; + font-size: 1rem; + + background: var(--color-rose); + color: var(--color-dark); + + & th { + padding-top: 0.25rem; + padding-bottom: 0.25rem; + } +} + +tbody { + background: var(--color-light-rose); + + font-family: monospace; + font-size: 0.85rem; +} + +td, +th { + padding-left: 0.5rem; + padding-right: 0.5rem; +} -- cgit v1.2.3