Skip to content

Commit

Permalink
Merge pull request #389 from appsembler/matej/fix-visual-errors
Browse files Browse the repository at this point in the history
fix some link colors
  • Loading branch information
bryanlandia authored Jul 16, 2021
2 parents 62632ce + 0196c90 commit d303ddf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,14 @@
padding: calcRem(5) calcRem(10);
border: calcRem(2) solid pick-visible-color($primary-color, #fff, $base-text-color);
border-radius: calcRem(50);
color: pick-visible-color($primary-color, #fff, $base-text-color);
color: pick-visible-color($primary-color, #fff, $base-text-color) !important;
text-decoration: none;
cursor: pointer;
transition: all 0.2s ease-in-out;

&:hover {
background-color: pick-visible-color($primary-color, #fff, $base-text-color);
color: pick-visible-color(pick-visible-color($primary-color, #fff, $base-text-color), #fff, $primary-color);
color: pick-visible-color(pick-visible-color($primary-color, #fff, $base-text-color), #fff, $primary-color) !important;
}
}

Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/layout/_header-nav.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ a.header-nav__link, a.header-nav__link:not(.btn) {
margin-right: calcRem(30);
font-size: $base-font-size;
font-weight: 600;
color: pick-visible-color($primary-color, #fff, $base-text-color);
color: pick-visible-color($primary-color, #fff, $base-text-color) !important;
text-decoration: none;
position: relative;

Expand Down
4 changes: 2 additions & 2 deletions frontend/src/views/_dashboard-content.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
padding: calcRem(15) calcRem(25);
margin: calcRem(30) auto calcRem(50);
font-weight: bold;
color: $primary-color;
color: $primary-color !important;
border: calcRem(2) solid $primary-color;
background: transparent;
cursor: pointer;
Expand All @@ -35,7 +35,7 @@
text-decoration: none;

&:hover {
color: #fff;
color: #fff !important;
background: $primary-color;
}
}
Expand Down

0 comments on commit d303ddf

Please sign in to comment.