mirror of
https://github.com/mempool/mempool.git
synced 2025-02-22 22:25:34 +01:00
Make links color manageable with themes
This commit is contained in:
parent
0fcd132df4
commit
6a767ce5c4
3 changed files with 15 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
}
|
|
@ -21,7 +21,7 @@ $primary: #007cfa;
|
|||
$secondary: #272f4e;
|
||||
$tertiary: #6225b2;
|
||||
$success: #0aab2f;
|
||||
$info: #10e0ff;
|
||||
$info: #00ddff;
|
||||
|
||||
$h5-font-size: 1.15rem !default;
|
||||
|
||||
|
@ -69,6 +69,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: #171c2a;
|
||||
|
|
|
@ -21,7 +21,7 @@ $primary: #007cfa;
|
|||
$secondary: #272f4e;
|
||||
$tertiary: #6225b2;
|
||||
$success: #0aab2f;
|
||||
$info: #10e0ff;
|
||||
$info: #00ddff;
|
||||
|
||||
$h5-font-size: 1.15rem !default;
|
||||
|
||||
|
@ -69,6 +69,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: #171c2a;
|
||||
|
|
Loading…
Add table
Reference in a new issue