_core.scss 466 B

123456789
  1. .#{$mdi-css-prefix} {
  2. display: inline-block;
  3. font: normal normal normal #{$mdi-font-size-base}/1 MaterialDesignIcons; // shortening font declaration
  4. font-size: inherit; // can't have font-size inherit on line above, so need to override
  5. text-rendering: auto; // optimizelegibility throws things off #1094
  6. -webkit-font-smoothing: antialiased;
  7. -moz-osx-font-smoothing: grayscale;
  8. transform: translate(0, 0); // ensures no half-pixel rendering in firefox
  9. }