Sha256: 693d44ffadb03d18f2cb1c4b88b6594f2bc46ef9e2303b106549883da01bdceb

Contents?: true

Size: 591 Bytes

Versions: 3

Compression:

Stored size: 591 Bytes

Contents

:root {
  // Custom variable values only support SassScript inside `#{}`.
  @each $color, $value in $colors {
    --#{$color}: #{$value};
  }

  @each $color, $value in $theme-colors {
    --#{$color}: #{$value};
  }

  @each $bp, $value in $grid-breakpoints {
    --breakpoint-#{$bp}: #{$value};
  }

  // Use `inspect` for lists so that quoted items keep the quotes.
  // See https://github.com/sass/sass/issues/2383#issuecomment-336349172
  --font-family-sans-serif: #{inspect($font-family-sans-serif)};
  --font-family-monospace: #{inspect($font-family-monospace)};
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mancalledmountain-theme-0.1.2 _sass/vendors/bootstrap/_root.scss
mancalledmountain-theme-0.1.1 _sass/vendors/bootstrap/_root.scss
mancalledmountain-theme-0.1.0 _sass/vendors/bootstrap/_root.scss