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

github.com/ForkAwesome/Fork-Awesome.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeremia Taglialatela <tagliala.dev@gmail.com>2014-12-28 17:27:45 +0300
committerGeremia Taglialatela <tagliala.dev@gmail.com>2014-12-28 17:27:45 +0300
commitc27c1a59b9d68bf0a5d020ce0611e818ba461c4a (patch)
tree3c87e9429e81fbceaec8a5ae3bbe393cf84a9c78 /less/core.less
parentb590472694c07fb9a188b7fef94d9f6daee46c1e (diff)
Added a variable to customise base font size
Closes #5128
Diffstat (limited to 'less/core.less')
-rw-r--r--less/core.less3
1 files changed, 2 insertions, 1 deletions
diff --git a/less/core.less b/less/core.less
index 01d1910f7..71103b7ac 100644
--- a/less/core.less
+++ b/less/core.less
@@ -3,9 +3,10 @@
.@{fa-css-prefix} {
display: inline-block;
- font: normal normal normal 14px/1 FontAwesome; // shortening font declaration
+ font: normal normal normal @fa-font-size-base/1 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;
+
}