refs #1318 Apply font-size settings in New toot

This commit is contained in:
AkiraFukushima 2020-04-11 17:23:40 +09:00
parent a8ba8fca6d
commit 4aed8a9065
4 changed files with 38 additions and 34 deletions

View File

@ -2,5 +2,7 @@
"tabWidth": 2, "tabWidth": 2,
"semi": false, "semi": false,
"singleQuote": true, "singleQuote": true,
"printWidth": 140 "printWidth": 140,
"trailingComma": "none",
"arrowParens": "avoid"
} }

View File

@ -456,7 +456,7 @@ export default {
font-size: 1.5rem; font-size: 1.5rem;
.fa-icon { .fa-icon {
font-size: 0.9em; font-size: 0.9rem;
width: auto; width: auto;
height: 1em; height: 1em;
max-width: 100%; max-width: 100%;
@ -469,6 +469,7 @@ export default {
.el-dialog__footer { .el-dialog__footer {
background-color: #f2f6fc; background-color: #f2f6fc;
font-size: var(--base-font-size);
.upload-image { .upload-image {
text-align: left; text-align: left;

View File

@ -268,6 +268,7 @@ export default {
.status { .status {
position: relative; position: relative;
z-index: 1; z-index: 1;
font-size: var(--base-font-size);
textarea { textarea {
display: block; display: block;
@ -300,7 +301,7 @@ export default {
box-sizing: border-box; box-sizing: border-box;
li { li {
font-size: 14px; font-size: var(--base-font-size);
padding: 0 20px; padding: 0 20px;
white-space: nowrap; white-space: nowrap;
overflow: hidden; overflow: hidden;