app/assets/stylesheets/alignment/_overflow.scss in patterns-0.1.6 vs app/assets/stylesheets/alignment/_overflow.scss in patterns-0.1.7
- old
+ new
@@ -14,6 +14,27 @@
& + * {
overflow: hidden;
}
}
+}
+@mixin overflow_middle_container {
+ @include clearfix;
+
+ & > * {
+ text-align: center;
+ overflow: hidden;
+ }
+ & > :first-child {
+ float: left;
+
+ overflow: visible;
+ text-align: inherit;
+
+ & + * {
+ float: right;
+
+ overflow: visible;
+ text-align: inherit;
+ }
+ }
}
\ No newline at end of file