refonte intégrale de la grille (grillade)
This commit is contained in:
parent
1f45d141be
commit
f35fb9aa9b
4 changed files with 334 additions and 156 deletions
|
@ -1,4 +1,5 @@
|
||||||
# changelog v6.0.0 (21 septembre 2016)
|
# changelog v6.0.0 (21 septembre 2016)
|
||||||
|
- refonte intégrale de la grille de mise en forme (adoption de grillade.knacss.com)
|
||||||
- suppression de include-media (crée des bugs d'encodage, nécessite un temps d'apprentissage, et n'apporte pas grand chose au final).
|
- suppression de include-media (crée des bugs d'encodage, nécessite un temps d'apprentissage, et n'apporte pas grand chose au final).
|
||||||
- refonte des valeurs des Breakpoints et des classes responsive.
|
- refonte des valeurs des Breakpoints et des classes responsive.
|
||||||
- modularisation des fichiers et dossiers, classés par fonctions (config, vendor, library, objects, utility)
|
- modularisation des fichiers et dossiers, classés par fonctions (config, vendor, library, objects, utility)
|
||||||
|
|
|
@ -25,7 +25,7 @@ gulp.task('css', function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
gulp.task('grillade', function() {
|
gulp.task('grillade', function() {
|
||||||
return gulp.src(['./sass/_include-media/_include-media.scss','./sass/_config-variables.scss', './sass/_layout-grids.scss'])
|
return gulp.src(['./sass/_config/_variables.scss', './sass/_config/_breakpoints.scss', './sass/grids/_grillade.scss'])
|
||||||
.pipe(concat('grillade.scss'))
|
.pipe(concat('grillade.scss'))
|
||||||
.pipe(gulp.dest('./css/'))
|
.pipe(gulp.dest('./css/'))
|
||||||
.pipe(sass())
|
.pipe(sass())
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
// Warning : you should use your own values, regardless of the devices
|
// Warning : you should use your own values, regardless of the devices
|
||||||
// GOOD : (max-width: $BP) and (min-width: ($BP + 1))
|
// GOOD : (max-width: $BP) and (min-width: ($BP + 1))
|
||||||
$tiny: 544px; // or 'em' if you prefer, of course
|
$tiny: 544px !default; // or 'em' if you prefer, of course
|
||||||
$small: 768px;
|
$small: 768px !default;
|
||||||
$medium: 1024px;
|
$medium: 1024px !default;
|
||||||
$large: 1200px;
|
$large: 1200px !default;
|
||||||
$extra-large: 1440px;
|
$extra-large: 1440px !default;
|
||||||
|
|
|
@ -1,165 +1,342 @@
|
||||||
/* ---------------------------------- */
|
/* ---------------------------------- */
|
||||||
/* ==Grid Layout (grillade) */
|
/* ==Grillade : Simple Grid System */
|
||||||
/* ---------------------------------- */
|
/* ---------------------------------- */
|
||||||
|
/* Doc : http://grillade.knacss.com */
|
||||||
|
|
||||||
// Tuto : http://www.alsacreations.com/tuto/lire/1659-une-grille-responsive-avec-flexbox-et-LESS.html
|
// Breakpoints variables
|
||||||
// Demo : http://codepen.io/raphaelgoetter/pen/ZYjwEB
|
$tiny: 544px !default;
|
||||||
|
$small: 768px !default;
|
||||||
|
// Grids variables
|
||||||
|
$grid-gutter: 1rem !default; // gutter value for grid layouts. Unit can be: %, px, em, rem
|
||||||
|
$grid-gutter-l: $grid-gutter * 2;
|
||||||
|
$grid-gutter-xl: $grid-gutter * 4;
|
||||||
|
|
||||||
// Usage in vanilla CSS:
|
/* Grids common rules (for mono- and multi-lines grid) */
|
||||||
// - <div class="grid-4"> for an equal fourth columns grid container
|
@media (min-width: ($tiny + 1)) {
|
||||||
// - <div class="grid-2-1"> for an uneven columns grid container
|
[class*=" grid"],
|
||||||
|
[class^="grid"] {
|
||||||
|
& > * {
|
||||||
|
box-sizing: border-box;
|
||||||
|
min-width: 0; /* avoid min-width: auto */
|
||||||
|
min-height: 0; /* avoid min-height: auto */
|
||||||
|
}
|
||||||
|
|
||||||
// Usage with preprocessors : if you're using Sass, you can config grids variables :
|
&.has-gutter {
|
||||||
// n = number of columns (default = 4) / g = gutter value (default = 1em)
|
margin-right: -$grid-gutter / 2;
|
||||||
// example : .grid-perso { @include grid(12, 10px); }
|
margin-left: -$grid-gutter / 2;
|
||||||
// ... or uneven grids :
|
|
||||||
// left = left ratio column (default = 2) / right = right ratio column (default = 1)
|
|
||||||
// example : .grid-perso { @include uneven-grid(2, 1, 10px); }
|
|
||||||
|
|
||||||
/* grid container */
|
& > * {
|
||||||
[class*="#{$kna-namespace}grid-"] {
|
margin-right: $grid-gutter / 2;
|
||||||
|
margin-left: $grid-gutter / 2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.has-gutter-l {
|
||||||
|
margin-right: -$grid-gutter-l / 2;
|
||||||
|
margin-left: -$grid-gutter-l / 2;
|
||||||
|
|
||||||
|
& > * {
|
||||||
|
margin-right: $grid-gutter-l / 2;
|
||||||
|
margin-left: $grid-gutter-l / 2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.has-gutter-xl {
|
||||||
|
margin-right: -$grid-gutter-xl / 2;
|
||||||
|
margin-left: -$grid-gutter-xl / 2;
|
||||||
|
|
||||||
|
& > * {
|
||||||
|
margin-right: $grid-gutter-xl / 2;
|
||||||
|
margin-left: $grid-gutter-xl / 2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/* Mono-line grid system (.grid) */
|
||||||
|
.grid {
|
||||||
|
display: flex;
|
||||||
|
|
||||||
|
& > * {
|
||||||
|
flex: 1 1 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/* Multi-line grid system (.grid-X) */
|
||||||
|
[class*=" grid-"],
|
||||||
|
[class^="grid-"] {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
margin-left: -$grid-gutter;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* grid childs */
|
|
||||||
[class*="#{$kna-namespace}grid-"] > * {
|
|
||||||
box-sizing: border-box;
|
|
||||||
flex: 0 0 auto;
|
|
||||||
width: calc(100% - #{$grid-gutter} - .01px);// @bugfix IE https://github.com/alsacreations/KNACSS/issues/133;
|
|
||||||
min-width: 0;
|
|
||||||
min-height: 0;
|
|
||||||
margin-left: $grid-gutter;
|
|
||||||
@include media('>tiny-screen', '<=small-screen') {
|
|
||||||
& {
|
|
||||||
width: calc(100% * 1 / 2 - #{$grid-gutter} - .01px);
|
|
||||||
}
|
|
||||||
&.grid-item-double {
|
|
||||||
width: calc(100% - #{$grid-gutter} - .01px);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Sass mixins for *equal* columns grid container
|
|
||||||
// example : .grid-perso { @include grid(12); }
|
|
||||||
@mixin grid($grid-number:$grid-number,$newgutter:$grid-gutter) {
|
|
||||||
@if $newgutter != $grid-gutter {
|
|
||||||
margin-left: -$newgutter;
|
|
||||||
}
|
|
||||||
& > * {
|
& > * {
|
||||||
width: calc(100% * 1 / #{$grid-number} - #{$newgutter} - .01px);
|
flex: 0 0 auto;
|
||||||
@if $newgutter != $grid-gutter {
|
width: calc(100% - .01px); /* @bugfix IE https://github.com/alsacreations/KNACSS/issues/133; */
|
||||||
margin-left: $newgutter;
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
& > .#{$kna-namespace}grid-item-double {
|
|
||||||
width: calc(100% * 2 / #{$grid-number} - #{$newgutter});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Examples : will be compiled in CSS
|
&.has-gutter > * {
|
||||||
@include media('>small-screen') {
|
|
||||||
@for $i from 2 through 12 {
|
|
||||||
[class*="#{$kna-namespace}grid-#{$i}"] {
|
|
||||||
@include grid(#{$i});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Responsive grid */
|
|
||||||
// example : .grid-4-small-2 will be 1 column (tiny) then 2 columns (small) then 4 columns
|
|
||||||
@include media('>tiny-screen', '<=small-screen') {
|
|
||||||
[class*="-small-4"] > * {
|
|
||||||
width: calc(100% * 1 / 4 - #{$grid-gutter} - .01px);
|
|
||||||
}
|
|
||||||
[class*="-small-4"] > .grid-item-double {
|
|
||||||
width: calc(100% * 1 / 2 - #{$grid-gutter} - .01px);
|
|
||||||
}
|
|
||||||
[class*="-small-3"] > * {
|
|
||||||
width: calc(100% * 1 / 3 - #{$grid-gutter} - .01px);
|
|
||||||
}
|
|
||||||
[class*="-small-3"] > .grid-item-double {
|
|
||||||
width: calc(100% * 2 / 3 - #{$grid-gutter} - .01px);
|
|
||||||
}
|
|
||||||
[class*="-small-2"] > * {
|
|
||||||
width: calc(100% * 1 / 2 - #{$grid-gutter} - .01px);
|
|
||||||
}
|
|
||||||
[class*="-small-2"] > .grid-item-double {
|
|
||||||
width: calc(100% - #{$grid-gutter} - .01px);
|
width: calc(100% - #{$grid-gutter} - .01px);
|
||||||
}
|
}
|
||||||
[class*="-small-1"] > * {
|
|
||||||
width: calc(100% - #{$grid-gutter} - .01px);
|
|
||||||
}
|
|
||||||
[class*="-small-1"] > .grid-item-double {
|
|
||||||
width: calc(100% - #{$grid-gutter} - .01px);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
&.has-gutter-l > * {
|
||||||
|
width: calc(100% - #{$grid-gutter-l} - .01px);
|
||||||
|
}
|
||||||
|
|
||||||
// Sass mixins for *unequal* columns grid container
|
&.has-gutter-xl > * {
|
||||||
// example : .grid-perso { @include uneven-grid(2, 1); }
|
width: calc(100% - #{$grid-gutter-xl} - .01px);
|
||||||
@mixin uneven-grid($grid-left:$grid-left, $grid-right:$grid-right, $newgutter:$grid-gutter) {
|
|
||||||
@if $newgutter != $grid-gutter {
|
|
||||||
margin-left: -$newgutter;
|
|
||||||
}
|
|
||||||
> * {
|
|
||||||
@if $newgutter != $grid-gutter {
|
|
||||||
margin-left: $newgutter;
|
|
||||||
width: calc(100% - #{$newgutter});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@include media('>small-screen') {
|
|
||||||
& > :nth-child(odd) {
|
|
||||||
$size: ($grid-left / ($grid-left + $grid-right)) * 100%;
|
|
||||||
width: calc(#{$size} - #{$newgutter});
|
|
||||||
}
|
|
||||||
& > :nth-child(even) {
|
|
||||||
$size: ($grid-right / ($grid-left + $grid-right)) * 100%;
|
|
||||||
width: calc(#{$size} - #{$newgutter});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
/* Grid offsets */
|
||||||
|
.push {
|
||||||
// Examples : will be compiled in CSS
|
|
||||||
|
|
||||||
.#{$kna-namespace}grid-2-1 {
|
|
||||||
@include uneven-grid(2,1);
|
|
||||||
}
|
|
||||||
|
|
||||||
.#{$kna-namespace}grid-1-2 {
|
|
||||||
@include uneven-grid(1,2);
|
|
||||||
}
|
|
||||||
|
|
||||||
.#{$kna-namespace}grid-3-1 {
|
|
||||||
@include uneven-grid(3,1);
|
|
||||||
}
|
|
||||||
|
|
||||||
.#{$kna-namespace}grid-1-3 {
|
|
||||||
@include uneven-grid(1,3);
|
|
||||||
}
|
|
||||||
|
|
||||||
.#{$kna-namespace}grid-3-2 {
|
|
||||||
@include uneven-grid(3,2);
|
|
||||||
}
|
|
||||||
|
|
||||||
.#{$kna-namespace}grid-2-3 {
|
|
||||||
@include uneven-grid(2,3);
|
|
||||||
}
|
|
||||||
|
|
||||||
.#{$kna-namespace}grid-4-1 {
|
|
||||||
@include uneven-grid(4,1);
|
|
||||||
}
|
|
||||||
|
|
||||||
.#{$kna-namespace}grid-1-4 {
|
|
||||||
@include uneven-grid(1,4);
|
|
||||||
}
|
|
||||||
|
|
||||||
.#{$kna-namespace}pull {
|
|
||||||
margin-right: auto;
|
|
||||||
}
|
|
||||||
.#{$kna-namespace}push {
|
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.pull {
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
/* Grid order */
|
||||||
|
.grid-item-first {
|
||||||
|
order: -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.grid-item-last {
|
||||||
|
order: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
[class*="--reverse"] {
|
||||||
|
flex-direction: row-reverse;
|
||||||
|
}
|
||||||
|
// Sass mixin for Multi-line grid system
|
||||||
|
// example : .grid-perso { @include grid(12, 3rem); }
|
||||||
|
@mixin grid($grid-number:4, $new-gutter:$grid-gutter) {
|
||||||
|
& > * {
|
||||||
|
width: calc(100% * 1 / #{$grid-number} - .01px);
|
||||||
|
}
|
||||||
|
|
||||||
|
&.has-gutter > * {
|
||||||
|
width: calc(100% * 1 / #{$grid-number} - #{$grid-gutter} - .01px);
|
||||||
|
}
|
||||||
|
|
||||||
|
&.has-gutter-l > * {
|
||||||
|
width: calc(100% * 1 / #{$grid-number} - #{$grid-gutter-l} - .01px);
|
||||||
|
}
|
||||||
|
|
||||||
|
&.has-gutter-xl > * {
|
||||||
|
width: calc(100% * 1 / #{$grid-number} - #{$grid-gutter-xl} - .01px);
|
||||||
|
}
|
||||||
|
@if ($new-gutter != 0) {
|
||||||
|
@if ($new-gutter != $grid-gutter){
|
||||||
|
margin-right: -$new-gutter / 2;
|
||||||
|
margin-left: -$new-gutter / 2;
|
||||||
|
|
||||||
|
& > * {
|
||||||
|
margin-right: $new-gutter / 2;
|
||||||
|
margin-left: $new-gutter / 2;
|
||||||
|
width: calc(100% * 1 / #{$grid-number} - #{$new-gutter} - .01px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Constructing grids : will be compiled in CSS
|
||||||
|
@media (min-width: ($tiny + 1)) {
|
||||||
|
@for $i from 2 through 12{
|
||||||
|
[class*="grid-#{$i}"] {
|
||||||
|
@include grid(#{$i},0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/* Sizing individual children */
|
||||||
|
@media (min-width: ($tiny + 1)) {
|
||||||
|
.full {
|
||||||
|
flex: 0 0 auto;
|
||||||
|
width: calc(100% - .01px);
|
||||||
|
|
||||||
|
.has-gutter & {
|
||||||
|
width: calc(100% - #{$grid-gutter} - .01px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.has-gutter-l & {
|
||||||
|
width: calc(100% - #{$grid-gutter-l} - .01px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.has-gutter-xl & {
|
||||||
|
width: calc(100% - #{$grid-gutter-xl} - .01px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.one-half {
|
||||||
|
flex: 0 0 auto;
|
||||||
|
width: calc(50% - .01px);
|
||||||
|
|
||||||
|
.has-gutter & {
|
||||||
|
width: calc(50% - #{$grid-gutter} - .01px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.has-gutter-l & {
|
||||||
|
width: calc(50% - #{$grid-gutter-l} - .01px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.has-gutter-xl & {
|
||||||
|
width: calc(50% - #{$grid-gutter-xl} - .01px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.one-third {
|
||||||
|
flex: 0 0 auto;
|
||||||
|
width: calc(100% / 3 - .01px);
|
||||||
|
|
||||||
|
.has-gutter & {
|
||||||
|
width: calc(100% / 3 - #{$grid-gutter} - .01px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.has-gutter-l & {
|
||||||
|
width: calc(100% / 3 - #{$grid-gutter-l} - .01px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.has-gutter-xl & {
|
||||||
|
width: calc(100% / 3 - #{$grid-gutter-xl} - .01px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.one-quarter {
|
||||||
|
flex: 0 0 auto;
|
||||||
|
width: calc(100% / 4 - .01px);
|
||||||
|
|
||||||
|
.has-gutter & {
|
||||||
|
width: calc(100% / 4 - #{$grid-gutter} - .01px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.has-gutter-l & {
|
||||||
|
width: calc(100% / 4 - #{$grid-gutter-l} - .01px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.has-gutter-xl & {
|
||||||
|
width: calc(100% / 4 - #{$grid-gutter-xl} - .01px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.one-fifth {
|
||||||
|
flex: 0 0 auto;
|
||||||
|
width: calc(100% / 5 - .01px);
|
||||||
|
|
||||||
|
.has-gutter & {
|
||||||
|
width: calc(100% / 5 - #{$grid-gutter} - .01px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.has-gutter-l & {
|
||||||
|
width: calc(100% / 5 - #{$grid-gutter-l} - .01px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.has-gutter-xl & {
|
||||||
|
width: calc(100% / 5 - #{$grid-gutter-xl} - .01px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.two-thirds {
|
||||||
|
flex: 0 0 auto;
|
||||||
|
width: calc(100% / 3 * 2 - .01px);
|
||||||
|
|
||||||
|
.has-gutter & {
|
||||||
|
width: calc(100% / 3 * 2 - #{$grid-gutter} - .01px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.has-gutter-l & {
|
||||||
|
width: calc(100% / 3 * 2 - #{$grid-gutter-l} - .01px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.has-gutter-xl & {
|
||||||
|
width: calc(100% / 3 * 2 - #{$grid-gutter-xl} - .01px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.three-quarters {
|
||||||
|
flex: 0 0 auto;
|
||||||
|
width: calc(100% / 4 * 3 - .01px);
|
||||||
|
|
||||||
|
.has-gutter & {
|
||||||
|
width: calc(100% / 4 * 3 - #{$grid-gutter} - .01px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.has-gutter-l & {
|
||||||
|
width: calc(100% / 4 * 3 - #{$grid-gutter-l} - .01px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.has-gutter-xl & {
|
||||||
|
width: calc(100% / 4 * 3 - #{$grid-gutter-xl} - .01px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/* Responsive Small Breakpoint */
|
||||||
|
// -small-X suffix means "X columns on small screen"
|
||||||
|
// example : .grid-4-small-2 will be 1 column (tiny and down) then 2 columns (until small) then 4 columns
|
||||||
|
@media (min-width: ($tiny + 1)) and (max-width: $small) {
|
||||||
|
[class*="-small-4"] {
|
||||||
|
& > * {
|
||||||
|
width: calc(100% / 4 - .01px);
|
||||||
|
}
|
||||||
|
|
||||||
|
&.has-gutter > * {
|
||||||
|
width: calc(100% / 4 - #{$grid-gutter} - .01px);
|
||||||
|
}
|
||||||
|
|
||||||
|
&.has-gutter-l > * {
|
||||||
|
width: calc(100% / 4 - #{$grid-gutter-l} - .01px);
|
||||||
|
}
|
||||||
|
|
||||||
|
&.has-gutter-xl > * {
|
||||||
|
width: calc(100% / 4 - #{$grid-gutter-xl} - .01px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[class*="-small-3"] {
|
||||||
|
& > * {
|
||||||
|
width: calc(100% / 3 - .01px);
|
||||||
|
}
|
||||||
|
|
||||||
|
&.has-gutter > * {
|
||||||
|
width: calc(100% / 3 - #{$grid-gutter} - .01px);
|
||||||
|
}
|
||||||
|
|
||||||
|
&.has-gutter-l > * {
|
||||||
|
width: calc(100% / 3 - #{$grid-gutter-l} - .01px);
|
||||||
|
}
|
||||||
|
|
||||||
|
&.has-gutter-xl > * {
|
||||||
|
width: calc(100% / 3 - #{$grid-gutter-xl} - .01px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[class*="-small-2"] {
|
||||||
|
& > * {
|
||||||
|
width: calc(100% / 2 - .01px);
|
||||||
|
}
|
||||||
|
|
||||||
|
&.has-gutter > * {
|
||||||
|
width: calc(100% / 2 - #{$grid-gutter} - .01px);
|
||||||
|
}
|
||||||
|
|
||||||
|
&.has-gutter-l > * {
|
||||||
|
width: calc(100% / 2 - #{$grid-gutter-l} - .01px);
|
||||||
|
}
|
||||||
|
|
||||||
|
&.has-gutter-xl > * {
|
||||||
|
width: calc(100% / 2 - #{$grid-gutter-xl} - .01px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[class*="-small-1"] {
|
||||||
|
& > * {
|
||||||
|
width: calc(100% - .01px);
|
||||||
|
}
|
||||||
|
|
||||||
|
&.has-gutter > * {
|
||||||
|
width: calc(100% - #{$grid-gutter} - .01px);
|
||||||
|
}
|
||||||
|
|
||||||
|
&.has-gutter-l > * {
|
||||||
|
width: calc(100% - #{$grid-gutter-l} - .01px);
|
||||||
|
}
|
||||||
|
|
||||||
|
&.has-gutter-xl > * {
|
||||||
|
width: calc(100% - #{$grid-gutter-xl} - .01px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue