Fix non-matching input placeholder color

This commit is contained in:
Giuseppe Criscione 2020-11-10 23:36:04 +01:00
parent c4d839f890
commit 10f375c612
3 changed files with 8 additions and 1 deletions

View File

@ -51,6 +51,9 @@ mark {
::selection { ::selection {
background-color: rgba(30, 136, 229, 0.25); } background-color: rgba(30, 136, 229, 0.25); }
::placeholder {
color: #7d7d7d; }
@media (min-width: 568px) { @media (min-width: 568px) {
.hide-from-xs { .hide-from-xs {
display: none; } } display: none; } }

File diff suppressed because one or more lines are too long

View File

@ -65,6 +65,10 @@ mark {
background-color: $selection-background-color; background-color: $selection-background-color;
} }
::placeholder {
color: $color-base-300;
}
@each $breakpoint-name in map-keys($responsive-breakpoints) { @each $breakpoint-name in map-keys($responsive-breakpoints) {
@media (min-width: map-get($responsive-breakpoints, $breakpoint-name)) { @media (min-width: map-get($responsive-breakpoints, $breakpoint-name)) {
.hide-from-#{$breakpoint-name} { .hide-from-#{$breakpoint-name} {