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

github.com/twbs/bootstrap-rubygem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGleb Mazovetskiy <glebm@google.com>2015-01-17 19:42:11 +0300
committerGleb Mazovetskiy <glebm@google.com>2015-01-17 19:42:11 +0300
commit4427d7f7fb36bc7568d03f7cd6c635e6550e6b9c (patch)
treec67f62fa93fe5aa023234542ca292575cb6f6b1f /lib
parent6b435ed09cc4493a018f12a3cbb4e8995b40104c (diff)
Reduce minimum precision 10 -> 8 #821
Diffstat (limited to 'lib')
-rw-r--r--lib/bootstrap-sass.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bootstrap-sass.rb b/lib/bootstrap-sass.rb
index dd7cc2d..ea275ff 100644
--- a/lib/bootstrap-sass.rb
+++ b/lib/bootstrap-sass.rb
@@ -55,8 +55,8 @@ module Bootstrap
::Sass.load_paths << stylesheets_path
- # bootstrap requires minimum precision of 10, see https://github.com/twbs/bootstrap-sass/issues/409
- ::Sass::Script::Number.precision = [10, ::Sass::Script::Number.precision].max
+ # bootstrap requires minimum precision of 8, see https://github.com/twbs/bootstrap-sass/issues/409
+ ::Sass::Script::Number.precision = [8, ::Sass::Script::Number.precision].max
end
def register_compass_extension