Make links color manageable with themes

This commit is contained in:
natsoni
2024-04-22 12:36:43 +02:00
committed by Mononaut
parent 0fcd132df4
commit 6a767ce5c4
3 changed files with 15 additions and 2 deletions

View File

@@ -72,6 +72,8 @@ $dropdown-link-active-bg: $active-bg;
--tertiary: #{$tertiary};
--success: #{$success};
--info: #{$info};
--link-color: #{$info};
--link-hover-color: #{$link-hover-color};
--icon: #f1f1f1;
--box-bg: #24273e;
@@ -1276,4 +1278,11 @@ app-global-footer {
.btn-secondary {
background-color: var(--secondary);
border-color: var(--secondary);
}
a {
color: var(--link-color);
&:hover {
color: var(--link-hover-color);
}
}