Browse Source

clamp to determine font-size on the body

pull/2032/head
t1enne 4 years ago
parent
commit
4fcdfdc730
  1. 2
      web/styles/globals.scss

2
web/styles/globals.scss

@ -9,7 +9,7 @@ body { @@ -9,7 +9,7 @@ body {
padding: 0;
margin: 0;
font-family: var(--theme-font-family), var(--theme-header-font-family), sans-serif;
font-size: 16px;
font-size: clamp(15px, 1.5vw, 16px);
background-color: var(--default-bg-color);
color: var(--default-text-color);

Loading…
Cancel
Save