diff options
author | Sam Bigelow <sbigelow@gitlab.com> | 2019-05-20 22:51:11 -0400 |
---|---|---|
committer | Sam Bigelow <sbigelow@gitlab.com> | 2019-06-03 15:35:02 -0400 |
commit | 27738a5446ce764a1f5924aef4a8f370ff44397e (patch) | |
tree | 2a1b19c3bf2732604a9c7091dafc42457fdcf670 /app/assets/stylesheets/errors.scss | |
parent | 66cf0c02d8368f155de71c68aaa9e893254fb919 (diff) | |
download | gitlab-ce-27738a5446ce764a1f5924aef4a8f370ff44397e.tar.gz |
Use rems for body font-size to help accessibility61640-set-font-size-on-html-not-body
- Use rems instead of px to set default font-size
This allows users to change font sizes in their browser and it will
affect the view in our application
Diffstat (limited to 'app/assets/stylesheets/errors.scss')
-rw-r--r-- | app/assets/stylesheets/errors.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/stylesheets/errors.scss b/app/assets/stylesheets/errors.scss index 658e0ff638e..8c32b6c8985 100644 --- a/app/assets/stylesheets/errors.scss +++ b/app/assets/stylesheets/errors.scss @@ -17,7 +17,7 @@ body { text-align: center; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; margin: auto; - font-size: 14px; + font-size: .875rem; } h1 { |