Skip to content

Commit

Permalink
fix: contrast issues in nav search bar
Browse files Browse the repository at this point in the history
  • Loading branch information
FatumaA committed Oct 25, 2024
1 parent 2b35663 commit 29d57a7
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions assets/scss/_external_link.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,37 @@ a.external-link:after {
display: none !important;
}

.td-search {
background-color: white;
border-radius: .5rem;
}

.td-search__input {
&::placeholder {
color: $dark !important;
}
}

.td-search__icon {
color: $dark !important;
}

.td-search {
background-color: white;
border-radius: .5rem;
}

.td-search__input {
&::placeholder {
color: #000;
}
}

.td-search__icon {
color: #000;
}


// Can't quite use this yet since (1) breadcrumbs currently use external links,
// (2) we can't currently easily turn this off for footer icons.
//
Expand Down

0 comments on commit 29d57a7

Please sign in to comment.