Guest User

Untitled

a guest
Jul 16th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. .component h1 {
  2. font-size: 3em; // not ideal -> the size is no longer updated when we change the 2 main text variables
  3. font-size: var(--text-xl); // update the value of the font size using a different variable
  4. font-size: calc(var(--text-base-size) * 3); // use base size to create new value - off scale
  5. font-size: calc(var(--text-xxl) - 0.8em); // use original font size to create new value - off scale
  6. }
Add Comment
Please, Sign In to add comment