Sha256: 165dec7d9162725e58e27b05f0a266d1e30db2ad4fd975cb71eebbfbc213329e

Contents?: true

Size: 498 Bytes

Versions: 11

Compression:

Stored size: 498 Bytes

Contents

@use "sass:math";
@use "sass:string";
@use "../utilities/initial-variables" as iv;

.#{iv.$helpers-prefix}gapless {
  gap: 0 !important;
}

$gaps: "gap", "column-gap", "row-gap";
$gap-base: 0.5rem;

@each $gap in $gaps {
  @for $i from 0 through 8 {
    .#{iv.$helpers-prefix}#{$gap}-#{$i} {
      #{$gap}: ($gap-base * $i) !important;
    }

    @if $i < 8 {
      .#{iv.$helpers-prefix}#{$gap}-#{$i}\.5 {
        #{$gap}: ($gap-base * $i + math.div($gap-base, 2)) !important;
      }
    }
  }
}

Version data entries

11 entries across 11 versions & 3 rubygems

Version Path
mere-blog-theme-1.0.1 node_modules/bulma/sass/helpers/gap.scss
mere-blog-theme-1.0 node_modules/bulma/sass/helpers/gap.scss
bulma-clean-theme-1.1.0 node_modules/bulma/sass/helpers/gap.scss
bulma-clean-theme-1.0.4 node_modules/bulma/sass/helpers/gap.scss
bulma-rails-1.0.2 app/assets/stylesheets/sass/helpers/gap.scss
bulma-clean-theme-1.0.3 node_modules/bulma/sass/helpers/gap.scss
bulma-rails-1.0.1 app/assets/stylesheets/sass/helpers/gap.scss
bulma-clean-theme-1.0.0 node_modules/bulma/sass/helpers/gap.scss
bulma-clean-theme-1.0.0.beta.2 node_modules/bulma/sass/helpers/gap.scss
bulma-clean-theme-1.0.0.beta.1 node_modules/bulma/sass/helpers/gap.scss
bulma-rails-1.0.0 app/assets/stylesheets/sass/helpers/gap.scss