iconfont.less 609 B

1234567891011121314151617181920212223242526272829
  1. .iconfont-mixin() {
  2. display: inline-flex;
  3. align-items: center;
  4. color: @icon-color;
  5. font-style: normal;
  6. line-height: 0;
  7. text-align: center;
  8. text-transform: none;
  9. vertical-align: -0.125em; // for SVG icon, see https://blog.prototypr.io/align-svg-icons-to-text-and-say-goodbye-to-font-icons-d44b3d7b26b4
  10. text-rendering: optimizelegibility;
  11. -webkit-font-smoothing: antialiased;
  12. -moz-osx-font-smoothing: grayscale;
  13. > * {
  14. line-height: 1;
  15. }
  16. svg {
  17. display: inline-block;
  18. }
  19. &::before {
  20. display: none; // dont display old icon.
  21. }
  22. & &-icon {
  23. display: block;
  24. }
  25. }