Added flexbox
This commit is contained in:
parent
359181e86c
commit
31dade19f4
2 changed files with 8 additions and 0 deletions
7
extras/flexbox.less
Normal file
7
extras/flexbox.less
Normal file
|
@ -0,0 +1,7 @@
|
|||
.flexbox() {
|
||||
display: -webkit-box;
|
||||
display: -moz-box;
|
||||
display: -ms-flexbox;
|
||||
display: -webkit-flex;
|
||||
display: flex;
|
||||
}
|
|
@ -2,3 +2,4 @@
|
|||
@import 'extras/layout';
|
||||
@import 'extras/shadows';
|
||||
@import 'extras/functional';
|
||||
@import 'extras/flexbox';
|
||||
|
|
Reference in a new issue