1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-24 15:49:44 +02:00

Use font antiasliasing

Set as default site-wide.
This commit is contained in:
Harvey Kandola 2018-12-16 17:21:02 +00:00
parent d1bc4a5b4c
commit 9f35cbb64a

View file

@ -40,3 +40,10 @@
.bold-700 { font-weight: 700; }
.bold-800 { font-weight: 800; }
.bold-900 { font-weight: 900; }
@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
body {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
}
}