Skip to content

v0.4.11

Choose a tag to compare

@micantoine micantoine released this 31 May 05:25
· 415 commits to master since this release

Features

  • Ability to have a set of vertical gutters for oo-column via the variable $columns-v-gutter-sizes
  • Responsive v-gutter modifiers v-gutter-${gutterName}@{breakpoint} (assign the needed breakpoints to $columns-v-gutter-sizes-breakpoints-classes) see doc for more info.

Sample of use

<div oo-column="row v-gutter-less v-gutter-tiny@sm v-gutter-small@md v-gutter-large@lg">
  <div oo-column="col"></div>
  <div oo-column="col"></div>
  <div oo-column="col"></div>
</div>

Changes

  • The variable $anchor-color-hover gets a darker version of $anchor-color as default value. (No more $color-secondary)

Functions

New functions available to facilitate the reuse of values coming from Map type variables

  • getColors($keyName) to get value from the $colors map
  • getTextColors($keyName) to get value from the $text-colors map
  • getBgColors($keyName) to get value from the $bg-colors map
  • getBorderColors($keyName) to get value from the $border-colors map
  • getTextSizes($keyName) to get value from the $text-sizes map
  • getMapValue($map, $key) get map value by passing the map to retrieve from and the name of the key . (Combination of sass functions map-get and map-has-key)