scss/foundation/common/_globals.scss in zurb-foundation-3.0.9 vs scss/foundation/common/_globals.scss in zurb-foundation-3.1.0.rc1
- old
+ new
@@ -13,11 +13,15 @@
a:focus { color: $mainColor; outline: none; }
p a, p a:visited { line-height: inherit; }
/* Misc ---------------------- */
- .left { float: left; }
- .right { float: right; }
+ .left { float: left;
+ @include respondTo(smallScreen) { float: none; }
+ }
+ .right { float: right;
+ @include respondTo(smallScreen) { float: none; }
+ }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-center { text-align: center; }
.hide { display: none; }
.highlight { background: $highlightColor; }
\ No newline at end of file