Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core/css
diff options
context:
space:
mode:
authorMarco Ambrosini <marcoambrosini@pm.me>2019-09-21 21:47:46 +0300
committerMarco Ambrosini <marcoambrosini@pm.me>2019-09-21 21:47:46 +0300
commitcde1c8b9a3502074e0d811daaedd909d6352e0b3 (patch)
tree38575014350297a6c6c12a26c630070e6cd5dd13 /core/css
parenta76e1a95966ee176435cd215ca9cea7bba3e7f9f (diff)
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.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 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);