mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 13:24:25 +00:00
23 lines
603 B
SCSS
23 lines
603 B
SCSS
// Import gridle :
|
|
@import 'gridle/gridle';
|
|
|
|
// setup the grid (required) :
|
|
@include gridle_setup((
|
|
context : 12,
|
|
gutter-width : 20px,
|
|
debug : true
|
|
));
|
|
|
|
// register special columns :
|
|
@include gridle_register_column("1on5", 1, 5);
|
|
|
|
// clear each classes :
|
|
@include gridle_register_clear_each(2, left);
|
|
@include gridle_register_clear_each(12, both);
|
|
|
|
// register states :
|
|
@include gridle_register_default_states();
|
|
@include gridle_register_state(ipad-landscape, (
|
|
query : "only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape)",
|
|
gutter-width : 0
|
|
)); |