summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2019-09-28 17:17:35 +0200
committerGitHub <noreply@github.com>2019-09-28 17:17:35 +0200
commita0d48c568d34d20a894b55ef2d26d972339866a2 (patch)
treea502eba7a92f76ce8c6ead4e877603391ed335a2
parent51b83988e42c511218217cee312adff8f2424c31 (diff)
parentcde1c8b9a3502074e0d811daaedd909d6352e0b3 (diff)
downloadnextcloud-server-a0d48c568d34d20a894b55ef2d26d972339866a2.tar.gz
nextcloud-server-a0d48c568d34d20a894b55ef2d26d972339866a2.zip
Bring the default font size up to 15px (#17228)
Bring the default font size up to 15px
-rw-r--r--core/css/guest.css3
-rw-r--r--core/css/styles.scss3
2 files changed, 4 insertions, 2 deletions
diff --git a/core/css/guest.css b/core/css/guest.css
index 68b7c2c4652..5e2b90d06b6 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 30baa4b73ac..663f00a4365 100644
--- a/core/css/styles.scss
+++ b/core/css/styles.scss
@@ -88,7 +88,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);