fix hidden services styling
All checks were successful
/ build (push) Successful in 4m35s

This commit is contained in:
Ruben 2025-10-27 22:40:41 -05:00
commit 2c5117e752
Signed by: sneexy
GPG key ID: 8ECFA045E63BC583
2 changed files with 9 additions and 16 deletions

View file

@ -727,6 +727,15 @@ buttons-container {
background: var(--accent); background: var(--accent);
color: light-dark(var(--foreground), var(--background)); color: light-dark(var(--foreground), var(--background));
} }
&[tor] {
--accent: #9743be;
&:hover { color: light-dark(var(--background), var(--foreground)); }
}
&[yggdrasil] {
--accent: #26bb8c;
}
} }
radio-button-group { radio-button-group {

View file

@ -89,20 +89,4 @@ article#services {
display: none !important; display: none !important;
} }
} }
}
a[tor] {
background-color: #4c285d;
}
a[tor]:hover {
background-color: #aa61cc;
}
a[yggdrasil] {
background-color: #1b795b;
}
a[yggdrasil]:hover {
background-color: #50e2aa;
} }