Add default font size

Signed-off-by: GretaD <gretadoci@gmail.com>
This commit is contained in:
GretaD 2020-10-30 15:26:07 +01:00
parent 9d5362dd8e
commit bfe87e501d
6 changed files with 11 additions and 5 deletions

View File

@ -146,7 +146,7 @@ export default {
}
h6 {
font-size: 14px;
font-size: var(--default-font-size);
}
pre {

View File

@ -46,6 +46,9 @@
--border-radius-pill: $border-radius-pill;
--font-face: $font-face;
--default-font-size: $default-font-size;
--default-line-height: $default-line-height;
--animation-quick: $animation-quick;
--animation-slow: $animation-slow;

View File

@ -89,8 +89,8 @@ body {
background-color: var(--color-main-background);
font-weight: normal;
/* bring the default font size up to 15px */
font-size: .9375em;
line-height: 1.6em;
font-size: var(--default-font-size);
line-height: var(--default-line-height);
font-family: var(--font-face);
color: var(--color-main-text);
}

View File

@ -87,6 +87,9 @@ $border-radius-large: 10px !default;
$border-radius-pill: 100px !default;
$font-face: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Cantarell, Ubuntu, 'Helvetica Neue', Arial, 'Noto Color Emoji', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol' !default;
$default-font-size: 15px;
$default-line-height: 24px;
$animation-quick: 100ms;
$animation-slow: 300ms;

View File

@ -250,7 +250,7 @@ $margin: 10px;
}
&-line-two {
opacity: .7;
font-size: 14px;
font-size: var(--default-font-size);
}
}

View File

@ -744,7 +744,7 @@ $input-padding: 6px;
::v-deep .empty-content__title {
font-weight: normal;
font-size: 14px;
font-size: var(--default-font-size);
padding: 0 15px;
text-align: center;
}