_sass/minima/_base.scss in minima-2.5.1 vs _sass/minima/_base.scss in minima-2.5.2

- old
+ new

@@ -35,11 +35,11 @@ */ h1, h2, h3, h4, h5, h6, p, blockquote, pre, ul, ol, dl, figure, %vertical-rhythm { - margin-bottom: $spacing-unit / 2; + margin-bottom: $spacing-unit * 0.5; } /** @@ -129,11 +129,11 @@ * Blockquotes */ blockquote { color: $grey-color; border-left: 4px solid $grey-color-light; - padding-left: $spacing-unit / 2; + padding-left: $spacing-unit * 0.5; @include relative-font-size(1.125); letter-spacing: -1px; font-style: italic; > :last-child { @@ -184,12 +184,12 @@ @extend %clearfix; @include media-query($on-laptop) { max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit})); max-width: calc(#{$content-width} - (#{$spacing-unit})); - padding-right: $spacing-unit / 2; - padding-left: $spacing-unit / 2; + padding-right: $spacing-unit * 0.5; + padding-left: $spacing-unit * 0.5; } } @@ -239,10 +239,10 @@ &:nth-child(even) { background-color: lighten($grey-color-light, 6%); } } th, td { - padding: ($spacing-unit / 3) ($spacing-unit / 2); + padding: ($spacing-unit * 0.3333333333) ($spacing-unit * 0.5); } th { background-color: lighten($grey-color-light, 3%); border: 1px solid darken($grey-color-light, 4%); border-bottom-color: darken($grey-color-light, 12%);