Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/janraasch/hugo-scroll.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'static/font-awesome/less/core.less')
-rw-r--r--[-rwxr-xr-x]static/font-awesome/less/core.less8
1 files changed, 4 insertions, 4 deletions
diff --git a/static/font-awesome/less/core.less b/static/font-awesome/less/core.less
index 6d223bc..c577ac8 100755..100644
--- a/static/font-awesome/less/core.less
+++ b/static/font-awesome/less/core.less
@@ -3,10 +3,10 @@
.@{fa-css-prefix} {
display: inline-block;
- font-family: FontAwesome;
- font-style: normal;
- font-weight: normal;
- line-height: 1;
+ font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration
+ font-size: inherit; // can't have font-size inherit on line above, so need to override
+ text-rendering: auto; // optimizelegibility throws things off #1094
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
+
}