-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: tup-490 increase portal font-size #312
Changes from all commits
e5b3d74
2aa44f3
228c1ac
ddc9afa
8cec1b8
b647f6a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* Mimic Core-Styles settings/font--docs.css */ | ||
/* FAQ: Design wants to increase base font from 12px to 14px */ | ||
/* FAQ: This change ALMOST gives clients consistent font size variables */ | ||
/* NOTE: | ||
- tup-ui <body> uses `--global-font-size--small` (is now 1.4rem) | ||
- tup-cms <body> uses `--global-font-size--medium` (has been 1.4rem) | ||
- tacc-docs <body> uses `--global-font-size--medium` (has been 1.6rem) | ||
*/ | ||
:root { | ||
--global-font-size--x-small: 1.2rem; | ||
--global-font-size--small: 1.4rem; | ||
--global-font-size--medium: 1.6rem; | ||
--global-font-size--large: 1.8rem; | ||
--global-font-size--x-large: 2.1rem; | ||
--global-font-size--xx-large: 2.8rem; | ||
--global-font-size--xxx-large: 3.2rem; | ||
} |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These changes keeps User News font sizes the same. |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This prevents horizontal scrollbar on System Status section. |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This prevents horizontal scrollbar on MFA section. This complex fix is isolated in #315, but required here. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This prevents horizontal scrollbar on MFA section.
This complex fix is isolated in #315, but required here.