We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
jekyll-sass-converter
v2.x
1 parent e8d20bf commit 808d374Copy full SHA for 808d374
Gemfile
@@ -17,3 +17,8 @@ end
17
18
# Performance-booster for watching directories on Windows
19
gem "wdm", "~> 0.1.1", :install_if => Gem.win_platform?
20
+
21
+# Lock jekyll-sass-converter to 2.x on Linux-musl
22
+if RUBY_PLATFORM =~ /linux-musl/
23
+ gem "jekyll-sass-converter", "~> 2.0"
24
+end
_sass/addon/commons.scss
@@ -841,7 +841,7 @@ $sidebar-display: "sidebar-display";
841
842
@for $i from 1 through $tab-count {
843
$offset: $tab-count - $i;
844
- $top: -$offset * $tab-height + calc(($tab-height - $tab-cursor-height) / 2);
+ $top: calc(-#{$offset} * #{$tab-height} + (#{$tab-height} - #{$tab-cursor-height}) / 2);
845
846
@if $i < $tab-count {
847
> li.active:nth-child(#{$i}),
0 commit comments