Upgrade bourbon to ^6.0.0 (#161)

This commit is contained in:
Pranav Raj S
2019-10-20 13:34:19 +05:30
committed by GitHub
parent 20cfd005b9
commit dd018f3682
23 changed files with 94 additions and 90 deletions

View File

@@ -75,17 +75,17 @@
// flex-layout
@mixin space-between() {
@include display(flex);
@include justify-content(space-between);
display: flex;
justify-content: space-between;
}
@mixin space-between-column() {
@include space-between;
@include flex-direction(column);
flex-direction: column;
}
@mixin space-between-row() {
@include space-between;
@include flex-direction(row);
flex-direction: row;
}
@mixin flex-shrink() {
@@ -114,7 +114,7 @@
}
@mixin scroll-on-hover() {
@include transition(all .4s $ease-in-out-cubic);
transition: all .4s $ease-in-out-cubic;
overflow: hidden;
&:hover {