tabi: posixlycorrect: update skin to make links underlined

also adds background to header
This commit is contained in:
Fabian Montero 2025-09-16 16:08:36 -06:00
parent 6e9b7a6ed1
commit b71384e992
Signed by: fabian
GPG key ID: 3EDA9AE3937CCDE3

View file

@ -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;
}