]> git.ipfire.org Git - thirdparty/bulma.git/commitdiff
Update columns.sass (#1356)
authorjasonhld <20310054+jasonhld@users.noreply.github.com>
Mon, 6 Nov 2017 12:30:31 +0000 (05:30 -0700)
committerJeremy Thomas <bbxdesign@gmail.com>
Mon, 6 Nov 2017 12:30:31 +0000 (12:30 +0000)
SASS 3.5+ variable parsing compatibility allows only #{}

sass/grid/columns.sass

index bdc7e3aa8e526e180d0c1aea31d68a4a1309e19c..965208e4866044fc581e6d7fc02767a5f9269bbe 100644 (file)
@@ -473,4 +473,4 @@ $column-gap: 0.75rem !default
     padding-right: var(--columnGap)
   @for $i from 0 through 8
     &.is-#{$i}
-      --columnGap: $i * 0.25rem
+      --columnGap: #{$i * 0.25rem}