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