modularisation des dossiers

This commit is contained in:
Raphael Goetter 2016-09-21 10:26:28 +02:00
parent 3b87077ae3
commit a1773bbae9
15 changed files with 60 additions and 15 deletions

View file

@ -0,0 +1,22 @@
/* Autogrid object */
@media (min-width: ($tiny + 1)) {
[class^="autogrid"],
[class*=" autogrid"] {
display: flex;
}
[class^="autogrid"] > *,
[class*=" autogrid"] > * {
flex: 1;
min-width: 0; /* avoid min-width:auto */
}
}
/* Autogrid variants */
@media (min-width: ($tiny + 1)) {
.has-gutter > *:not(:first-child) {
margin-left: 1rem;
}
[class*="--reverse"] {
flex-direction: row-reverse;
}
}