Merge pull request #21 from lukasjuhas/v2

Correct clearfix helper
This commit is contained in:
Lukas Juhas 2016-04-29 13:04:50 +01:00
commit 7650101416
1 changed files with 8 additions and 8 deletions

View File

@ -31,7 +31,7 @@
}
.clearfix {
@extend clearfix;
@include clearfix();
}
@ -40,16 +40,16 @@
* Text aligments
*/
.align-text-left {
text-align: left;
.align-text-left {
text-align: left;
}
.align-text-right {
text-align: right;
.align-text-right {
text-align: right;
}
.align-text-center {
text-align: center;
.align-text-center {
text-align: center;
}
@ -74,7 +74,7 @@
}
}
.visible-on-desktop {
.visible-on-desktop {
@include resp-max($breakpoint-md) {
display: none !important;
}