mirror of
https://github.com/tabler/tabler.git
synced 2025-12-21 17:34:25 +04:00
16 lines
255 B
SCSS
16 lines
255 B
SCSS
// stylelint-disable declaration-no-important
|
|
|
|
/**
|
|
Antialiasing
|
|
*/
|
|
.antialiased {
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
.subpixel-antialiased {
|
|
-webkit-font-smoothing: auto;
|
|
-moz-osx-font-smoothing: auto;
|
|
}
|
|
|