Merge pull request #345 from h3poteto/fix/fonts

Fix font and color of placeholder in new toot modal
This commit is contained in:
AkiraFukushima 2018-05-28 22:16:38 +09:00 committed by GitHub
commit e86db2d568
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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,10 +297,15 @@ export default {
resize: none;
height: 120px;
transition: border-color .2s cubic-bezier(.645,.045,.355,1);
}
font-family: 'Noto Sans', sans-serif;
textarea:focus {
outline: 0;
&::placeholder {
color: #c0c4cc;
}
&:focus {
outline: 0;
}
}
}