Fix placeholder color on all inputs

This commit is contained in:
MatthiasSaihttam 2021-10-12 17:15:05 -04:00
parent 0647597ef9
commit 36279ab94c
2 changed files with 4 additions and 5 deletions

View File

@ -94,6 +94,10 @@ textarea, input[type="text"], input[type="password"] {
display: block;
line-height: 1.5;
}
textarea::placeholder, input[type="text"]::placeholder {
color: var(--text-color);
opacity: 50%;
}
.text, .thought-end {
max-width: 100%;

View File

@ -2,11 +2,6 @@ textarea.thought {
width: calc(100% - 60px);
}
textarea.thought::placeholder {
color: var(--text-color);
opacity: 50%;
}
#post-button {
border-radius: 0;
background: none;