Blame less/core.less

Packit Service a3edbf
// Base Class Definition
Packit Service a3edbf
// -------------------------
Packit Service a3edbf
Packit Service a3edbf
.@{fa-css-prefix} {
Packit Service a3edbf
  display: inline-block;
Packit Service a3edbf
  font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration
Packit Service a3edbf
  font-size: inherit; // can't have font-size inherit on line above, so need to override
Packit Service a3edbf
  text-rendering: auto; // optimizelegibility throws things off #1094
Packit Service a3edbf
  -webkit-font-smoothing: antialiased;
Packit Service a3edbf
  -moz-osx-font-smoothing: grayscale;
Packit Service a3edbf
Packit Service a3edbf
}