Fix font and color of placeholder in new toot modal
This commit is contained in:
parent
8bdcffb278
commit
5fbe24bf3f
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue