From ddc5323846d86b120d7f7d2acd71986839ca1b4d Mon Sep 17 00:00:00 2001 From: Fabian Montero Date: Tue, 16 Sep 2025 16:08:36 -0600 Subject: [PATCH] tabi: posixlycorrect: update skin to make links underlined also adds background to header --- sass/skins/posixlycorrect.scss | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/sass/skins/posixlycorrect.scss b/sass/skins/posixlycorrect.scss index 453d2f3..47b6c2c 100644 --- a/sass/skins/posixlycorrect.scss +++ b/sass/skins/posixlycorrect.scss @@ -1,4 +1,7 @@ -// force dark theme +/* general */ + + +/* theme */ @mixin theme-variables($theme) { @if $theme =='light' { --primary-color: #FC9300; @@ -23,3 +26,15 @@ @include theme-variables('dark'); } } + + +/* header */ +.home-title { + background-color: var(--primary-color); + color: var(--background-color); + padding: 0.12rem; +} + +.nav-links { + text-decoration: underline; +}