diff options
author | Joas Schilling <coding@schilljs.com> | 2019-07-01 15:06:11 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2019-07-01 15:06:11 +0200 |
commit | c0b27dcf4bb1e44a9a828c6c6fef8f76f06544f8 (patch) | |
tree | 0a1489909cb9f032ffe3cf35ab75e69b667a4206 /core/css | |
parent | 1074e9838b508aacaac8e8d49f9506d68402dafa (diff) | |
download | nextcloud-server-c0b27dcf4bb1e44a9a828c6c6fef8f76f06544f8.tar.gz nextcloud-server-c0b27dcf4bb1e44a9a828c6c6fef8f76f06544f8.zip |
Only set the font if it was not set before
Otherwise Dyslexia setting can not set the font in the accessibility app
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/variables.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/css/variables.scss b/core/css/variables.scss index 7eacdd8f9e4..8a13121ba7d 100644 --- a/core/css/variables.scss +++ b/core/css/variables.scss @@ -79,7 +79,7 @@ $border-radius-large: 10px !default; // Pill-style button, value is large so big buttons also have correct roundness $border-radius-pill: 100px !default; -$font-face: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; +$font-face: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol' !default; $animation-quick: 100ms; $animation-slow: 300ms; |