v6.1.2 (21 juin 2017)

This commit is contained in:
Raphael Goetter 2017-06-21 10:50:33 +02:00
parent 679a936f5b
commit 689c3d32f7
14 changed files with 54 additions and 39 deletions

View file

@ -1,6 +1,6 @@
/* Autogrid object */
/* see http://codepen.io/raphaelgoetter/pen/KMgBJd */
@media (min-width: ($tiny + 1)) {
@media (min-width: $small) {
[class^="autogrid"],
[class*=" autogrid"] {
display: flex;
@ -14,7 +14,7 @@
}
/* Autogrid variants */
@media (min-width: ($tiny + 1)) {
@media (min-width: $small) {
.has-gutter > *:not(:first-child) {
margin-left: 1rem;
}

View file

@ -1,6 +1,6 @@
/* Media object */
/* see http://codepen.io/raphaelgoetter/pen/KMWWwj */
@media (min-width: ($tiny + 1)) {
@media (min-width: $small) {
.o-media {
display: flex;
align-items: flex-start;
@ -13,7 +13,7 @@
}
/* Media variants */
@media (min-width: ($tiny + 1)) {
@media (min-width: $small) {
.o-media--reverse {
flex-direction: row-reverse;
}