Adding more helpers

This commit is contained in:
xavijam 2016-01-14 18:26:33 +01:00
parent ed1675a17f
commit 919adb299b

View File

@ -27,3 +27,18 @@
.u-iBlock {
@include inline-block();
}
.u-showDesktop {
display: block !important;
}
.u-showMobile {
display: none !important;
}
@include media-query-mobile() {
.u-showDesktop {
display: none !important;
}
.u-showMobile {
display: block !important;
}
}