Skip to content

Commit

Permalink
fix: ensure powered by zendesk does not get visited color
Browse files Browse the repository at this point in the history
  • Loading branch information
mancristiana committed Mar 1, 2022
1 parent f59c97a commit 1f1287e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
5 changes: 5 additions & 0 deletions style.css
Expand Up @@ -1037,6 +1037,11 @@ ul {
display: inline-block;
}

.powered-by-zendesk a,
.powered-by-zendesk a:visited {
color: lighten($text_color, 20%);
}

/***** Breadcrumbs *****/
.breadcrumbs {
margin: 0 0 15px 0;
Expand Down
11 changes: 10 additions & 1 deletion styles/_footer.scss
Expand Up @@ -4,7 +4,9 @@
margin-top: 60px;
padding: 30px 0;

a { color: $secondary-text-color; }
a {
color: $secondary-text-color;
}

&-inner {
@include max-width-container;
Expand All @@ -17,3 +19,10 @@
display: inline-block;
}
}

.powered-by-zendesk {
a,
a:visited {
color: $secondary-text-color;
}
}

0 comments on commit 1f1287e

Please sign in to comment.