Is it possible to reduce whole page scale? It looks cleaner when zoomed out to 90%.
Hey @xlemuel14, good question.
As we use rems for most of the elements/fonts' sizes, which depends on the root font size, just put font-size: 14 (15)px; on html element somewhere and that's it:
```
html {
font-size: 14px;
}
Most helpful comment
Hey @xlemuel14, good question.
As we use
rems for most of the elements/fonts' sizes, which depends on the root font size, just put font-size: 14 (15)px; on html element somewhere and that's it:```
html {
font-size: 14px;
}