assets/stylesheets/material/utilities/_border.scss in material-sass-4.0.0.beta2 vs assets/stylesheets/material/utilities/_border.scss in material-sass-4.0.0.beta3

- old
+ new

@@ -1,22 +1,42 @@ // stylelint-disable declaration-no-important // Border +.border { + border: $border-width solid $border-color !important; +} + .border-0 { border: 0 !important; } +.border-top { + border-top: $border-width solid $border-color !important; +} + .border-top-0 { border-top: 0 !important; } +.border-right { + border-right: $border-width solid $border-color !important; +} + .border-right-0 { border-right: 0 !important; } +.border-bottom { + border-bottom: $border-width solid $border-color !important; +} + .border-bottom-0 { border-bottom: 0 !important; +} + +.border-left { + border-left: $border-width solid $border-color !important; } .border-left-0 { border-left: 0 !important; }