diff options
| author | taehoon <th.dev91@gmail.com> | 2019-07-05 12:08:16 -0400 |
|---|---|---|
| committer | taehoon <th.dev91@gmail.com> | 2019-10-24 15:15:33 -0400 |
| commit | 1504b272d2d4065c7ba9e940c09bdc853e728bc4 (patch) | |
| tree | 6726cb0f5e792e9f5b8ce0dc3b378d91d37203ad | |
| parent | 0f65280e203a5f41dba650760e0294e7215fc500 (diff) | |
reset font-size to normal text size using rem
| -rw-r--r-- | src/App.scss | 5 | ||||
| -rw-r--r-- | src/components/status/status.vue | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/src/App.scss b/src/App.scss index f20eb44c..2d10f1e7 100644 --- a/src/App.scss +++ b/src/App.scss @@ -39,10 +39,13 @@ h4 { text-align: center; } +html { + font-size: 14px; +} + body { font-family: sans-serif; font-family: var(--interfaceFont, sans-serif); - font-size: 14px; margin: 0; color: $fallback--text; color: var(--text, $fallback--text); diff --git a/src/components/status/status.vue b/src/components/status/status.vue index 79b359b7..cdafcfda 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -842,7 +842,7 @@ a.unmute { } .popper-wrapper.status-preview { - font-size: 14px; + font-size: 1rem; background-color: $fallback--bg; background-color: var(--bg, $fallback--bg); border-color: $fallback--border; |
