Commit 38bc1d536a7464af4988db8f1e9f70d922547741
1 parent
8c2dc865
基础字体改大到16px
Showing
5 changed files
with
36 additions
and
11 deletions
src/App.vue
| ... | ... | @@ -6,20 +6,38 @@ |
| 6 | 6 | |
| 7 | 7 | <script> |
| 8 | 8 | export default { |
| 9 | - name: 'App' | |
| 10 | -} | |
| 9 | + name: "App", | |
| 10 | +}; | |
| 11 | 11 | </script> |
| 12 | 12 | <style lang="scss"> |
| 13 | -.flex{ | |
| 13 | +html { | |
| 14 | + font-size: 18px; | |
| 15 | +} | |
| 16 | +.flex { | |
| 14 | 17 | display: flex; |
| 15 | 18 | } |
| 16 | -.aligin-center{ | |
| 19 | +.aligin-center { | |
| 17 | 20 | align-items: center; |
| 18 | 21 | } |
| 19 | -.page-box{ | |
| 22 | +.page-box { | |
| 20 | 23 | display: flex; |
| 21 | 24 | align-items: center; |
| 22 | 25 | justify-content: center; |
| 23 | 26 | padding: 10px; |
| 24 | 27 | } |
| 28 | +.el-menu-item, | |
| 29 | +.el-submenu__title, | |
| 30 | +.el-dropdown { | |
| 31 | + font-size: 18px; | |
| 32 | +} | |
| 33 | +.el-table, | |
| 34 | +.el-button, | |
| 35 | +.el-tabs__item, | |
| 36 | +.custom-tree-node, | |
| 37 | +.el-form-item__label, | |
| 38 | +.el-input, | |
| 39 | +.el-textarea, | |
| 40 | +.el-form-item__content { | |
| 41 | + font-size: 16px; | |
| 42 | +} | |
| 25 | 43 | </style> | ... | ... |
src/components/Breadcrumb/index.vue
src/views/QuestionBank/index.vue
src/views/TestPaper/index.vue
src/views/dashboard/index.vue
| ... | ... | @@ -27,11 +27,11 @@ |
| 27 | 27 | <span style="min-width: 3em">{{ |
| 28 | 28 | invitation.qujian |
| 29 | 29 | }}</span> |
| 30 | - <span style="min-width: 4em">{{ | |
| 30 | + <span style="min-width: 3em">{{ | |
| 31 | 31 | invitation.fullName |
| 32 | 32 | }}</span> |
| 33 | 33 | <span style="min-width: 7em">{{ invitation.phone }}</span> |
| 34 | - <span style="min-width: 4em">{{ | |
| 34 | + <span style="min-width: 5em">{{ | |
| 35 | 35 | invitation.processName |
| 36 | 36 | }}</span> |
| 37 | 37 | </li> |
| ... | ... | @@ -191,6 +191,9 @@ export default { |
| 191 | 191 | }, |
| 192 | 192 | ], |
| 193 | 193 | echartOption1: { |
| 194 | + textStyle: { | |
| 195 | + fontSize: 16, | |
| 196 | + }, | |
| 194 | 197 | legend: { |
| 195 | 198 | top: "bottom", |
| 196 | 199 | }, |
| ... | ... | @@ -209,6 +212,9 @@ export default { |
| 209 | 212 | ], |
| 210 | 213 | }, |
| 211 | 214 | echartOption2: { |
| 215 | + textStyle: { | |
| 216 | + fontSize: 16, | |
| 217 | + }, | |
| 212 | 218 | grid: { |
| 213 | 219 | top: 20, |
| 214 | 220 | bottom: 40, |
| ... | ... | @@ -485,6 +491,7 @@ export default { |
| 485 | 491 | <style lang="scss" scoped> |
| 486 | 492 | .popover-list { |
| 487 | 493 | padding-left: 10px; |
| 494 | + padding-right: 10px; | |
| 488 | 495 | li { |
| 489 | 496 | list-style: none; |
| 490 | 497 | height: 40px; |
| ... | ... | @@ -492,6 +499,8 @@ export default { |
| 492 | 499 | display: flex; |
| 493 | 500 | align-items: center; |
| 494 | 501 | border-top: 1px dashed #eaeaea; |
| 502 | + font-size: 16px; | |
| 503 | + padding-right: 20px; | |
| 495 | 504 | span { |
| 496 | 505 | margin-right: 10px; |
| 497 | 506 | } |
| ... | ... | @@ -532,7 +541,7 @@ export default { |
| 532 | 541 | .panel-title { |
| 533 | 542 | height: 3em; |
| 534 | 543 | line-height: 3em; |
| 535 | - font-size: 18px; | |
| 544 | + font-size: 22px; | |
| 536 | 545 | font-weight: bold; |
| 537 | 546 | } |
| 538 | 547 | } | ... | ... |