Fix font and color of placeholder in new toot modal

This commit is contained in:
AkiraFukushima 2018-05-28 21:13:30 +09:00
parent 8bdcffb278
commit 5fbe24bf3f
1 changed files with 13 additions and 3 deletions

View File

@ -274,6 +274,11 @@ export default {
input {
border-radius: 0;
font-family: 'Noto Sans', sans-serif;
&::placeholder {
color: #c0c4cc;
}
}
}
@ -292,12 +297,17 @@ export default {
resize: none;
height: 120px;
transition: border-color .2s cubic-bezier(.645,.045,.355,1);
font-family: 'Noto Sans', sans-serif;
&::placeholder {
color: #c0c4cc;
}
textarea:focus {
&:focus {
outline: 0;
}
}
}
.preview {
box-sizing: border-box;