diff options
author | Marco Ambrosini <marcoambrosini@pm.me> | 2019-09-21 20:47:46 +0200 |
---|---|---|
committer | Marco Ambrosini <marcoambrosini@pm.me> | 2019-09-21 20:47:46 +0200 |
commit | cde1c8b9a3502074e0d811daaedd909d6352e0b3 (patch) | |
tree | 38575014350297a6c6c12a26c630070e6cd5dd13 /core/css | |
parent | a76e1a95966ee176435cd215ca9cea7bba3e7f9f (diff) | |
download | nextcloud-server-cde1c8b9a3502074e0d811daaedd909d6352e0b3.tar.gz nextcloud-server-cde1c8b9a3502074e0d811daaedd909d6352e0b3.zip |
Bring the default font size up to 15px
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/guest.css | 3 | ||||
-rw-r--r-- | core/css/styles.scss | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/core/css/guest.css b/core/css/guest.css index 4cfca9cc6dd..8af6443d2ad 100644 --- a/core/css/guest.css +++ b/core/css/guest.css @@ -17,7 +17,8 @@ ul { list-style:none; } body { background-color: #ffffff; font-weight: normal; - font-size: .8em; + /* bring the default font size up to 15px */ + font-size: .9375em; line-height: 1.6em; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; color: #000; diff --git a/core/css/styles.scss b/core/css/styles.scss index 9d008632d70..4fce840ba1b 100644 --- a/core/css/styles.scss +++ b/core/css/styles.scss @@ -87,7 +87,8 @@ ul { body { background-color: var(--color-main-background); font-weight: normal; - font-size: .8em; + /* bring the default font size up to 15px */ + font-size: .9375em; line-height: 1.6em; font-family: var(--font-face); color: var(--color-main-text); |