spacing.sass (bulma-0.9.2) | : | spacing.sass (bulma-0.9.3) | ||
---|---|---|---|---|
.is-marginless | .is-marginless | |||
margin: 0 !important | margin: 0 !important | |||
.is-paddingless | .is-paddingless | |||
padding: 0 !important | padding: 0 !important | |||
$spacing-shortcuts: ("margin": "m", "padding": "p") !default | $spacing-shortcuts: ("margin": "m", "padding": "p") !default | |||
$spacing-directions: ("top": "t", "right": "r", "bottom": "b", "left": "l") !def ault | $spacing-directions: ("top": "t", "right": "r", "bottom": "b", "left": "l") !def ault | |||
$spacing-horizontal: "x" !default | $spacing-horizontal: "x" !default | |||
$spacing-vertical: "y" !default | $spacing-vertical: "y" !default | |||
$spacing-values: ("0": 0, "1": 0.25rem, "2": 0.5rem, "3": 0.75rem, "4": 1rem, "5 ": 1.5rem, "6": 3rem) !default | $spacing-values: ("0": 0, "1": 0.25rem, "2": 0.5rem, "3": 0.75rem, "4": 1rem, "5 ": 1.5rem, "6": 3rem, "auto": auto) !default | |||
@each $property, $shortcut in $spacing-shortcuts | @each $property, $shortcut in $spacing-shortcuts | |||
@each $name, $value in $spacing-values | @each $name, $value in $spacing-values | |||
// All directions | // All directions | |||
.#{$shortcut}-#{$name} | .#{$shortcut}-#{$name} | |||
#{$property}: $value !important | #{$property}: $value !important | |||
// Cardinal directions | // Cardinal directions | |||
@each $direction, $suffix in $spacing-directions | @each $direction, $suffix in $spacing-directions | |||
.#{$shortcut}#{$suffix}-#{$name} | .#{$shortcut}#{$suffix}-#{$name} | |||
#{$property}-#{$direction}: $value !important | #{$property}-#{$direction}: $value !important | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added |