mirror of
https://github.com/getgrav/grav-plugin-admin.git
synced 2025-11-15 09:46:06 +01:00
local initial checkin
This commit is contained in:
29
theme-old/scss/modules/_grid.scss
Normal file
29
theme-old/scss/modules/_grid.scss
Normal file
@@ -0,0 +1,29 @@
|
||||
%flexcontainer {
|
||||
display: -webkit-box;
|
||||
display: -moz-box;
|
||||
display: -ms-flexbox;
|
||||
display: -webkit-flex;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
@mixin flexwrap($value) {
|
||||
-webkit-flex-wrap: $value;
|
||||
-ms-flex-wrap: $value;
|
||||
flex-wrap: $value;
|
||||
}
|
||||
|
||||
@mixin flexblock($number) {
|
||||
-webkit-box-flex: $number;
|
||||
-moz-box-flex: $number;
|
||||
-webkit-flex: $number;
|
||||
-ms-flex: $number;
|
||||
flex: $number;
|
||||
}
|
||||
|
||||
@mixin flexblock-important($number) {
|
||||
-webkit-box-flex: $number !important;
|
||||
-moz-box-flex: $number !important;
|
||||
-webkit-flex: $number !important;
|
||||
-ms-flex: $number !important;
|
||||
flex: $number !important;
|
||||
}
|
||||
Reference in New Issue
Block a user