Fix input placeholder in safari and disabled color of the input.

This commit is contained in:
Konstantinos Triantafyllou 2023-06-23 16:22:46 +03:00
parent af77de7b79
commit 1e06310b8b
1 changed files with 2 additions and 1 deletions

View File

@ -70,8 +70,8 @@
& > .placeholder { & > .placeholder {
position: absolute; position: absolute;
left: 0;
top: 0; top: 0;
left: 0;
bottom: 0; bottom: 0;
right: 0; right: 0;
overflow: hidden; overflow: hidden;
@ -118,6 +118,7 @@
&:disabled { &:disabled {
background: transparent; background: transparent;
color: var(--input-color-disabled); color: var(--input-color-disabled);
-webkit-text-fill-color: var(--input-color-disabled);
} }
} }