13 lines
212 B
SCSS
13 lines
212 B
SCSS
|
//
|
||
|
// Utility classes
|
||
|
// --------------------------------------------------
|
||
|
|
||
|
|
||
|
//
|
||
|
// -------------------------
|
||
|
|
||
|
@mixin anti-alias() {
|
||
|
text-rendering: optimizeLegibility;
|
||
|
-webkit-font-smoothing: antialiased;
|
||
|
}
|