mirror of
https://github.com/mempool/mempool.git
synced 2025-02-23 14:40:38 +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};
|
--tertiary: #{$tertiary};
|
||||||
--success: #{$success};
|
--success: #{$success};
|
||||||
--info: #{$info};
|
--info: #{$info};
|
||||||
|
--link-color: #{$info};
|
||||||
|
--link-hover-color: #{$link-hover-color};
|
||||||
--icon: #f1f1f1;
|
--icon: #f1f1f1;
|
||||||
|
|
||||||
--box-bg: #24273e;
|
--box-bg: #24273e;
|
||||||
|
@ -1277,3 +1279,10 @@ app-global-footer {
|
||||||
background-color: var(--secondary);
|
background-color: var(--secondary);
|
||||||
border-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;
|
$secondary: #272f4e;
|
||||||
$tertiary: #6225b2;
|
$tertiary: #6225b2;
|
||||||
$success: #0aab2f;
|
$success: #0aab2f;
|
||||||
$info: #10e0ff;
|
$info: #00ddff;
|
||||||
|
|
||||||
$h5-font-size: 1.15rem !default;
|
$h5-font-size: 1.15rem !default;
|
||||||
|
|
||||||
|
@ -69,6 +69,8 @@ $dropdown-link-active-bg: $active-bg;
|
||||||
--tertiary: #{$tertiary};
|
--tertiary: #{$tertiary};
|
||||||
--success: #{$success};
|
--success: #{$success};
|
||||||
--info: #{$info};
|
--info: #{$info};
|
||||||
|
--link-color: #{$info};
|
||||||
|
--link-hover-color: #{$link-hover-color};
|
||||||
--icon: #f1f1f1;
|
--icon: #f1f1f1;
|
||||||
|
|
||||||
--box-bg: #171c2a;
|
--box-bg: #171c2a;
|
||||||
|
|
|
@ -21,7 +21,7 @@ $primary: #007cfa;
|
||||||
$secondary: #272f4e;
|
$secondary: #272f4e;
|
||||||
$tertiary: #6225b2;
|
$tertiary: #6225b2;
|
||||||
$success: #0aab2f;
|
$success: #0aab2f;
|
||||||
$info: #10e0ff;
|
$info: #00ddff;
|
||||||
|
|
||||||
$h5-font-size: 1.15rem !default;
|
$h5-font-size: 1.15rem !default;
|
||||||
|
|
||||||
|
@ -69,6 +69,8 @@ $dropdown-link-active-bg: $active-bg;
|
||||||
--tertiary: #{$tertiary};
|
--tertiary: #{$tertiary};
|
||||||
--success: #{$success};
|
--success: #{$success};
|
||||||
--info: #{$info};
|
--info: #{$info};
|
||||||
|
--link-color: #{$info};
|
||||||
|
--link-hover-color: #{$link-hover-color};
|
||||||
--icon: #f1f1f1;
|
--icon: #f1f1f1;
|
||||||
|
|
||||||
--box-bg: #171c2a;
|
--box-bg: #171c2a;
|
||||||
|
|
Loading…
Add table
Reference in a new issue