vendor/assets/stylesheets/furatto/_mixins.scss in furatto-1.0.1 vs vendor/assets/stylesheets/furatto/_mixins.scss in furatto-1.0.2
- old
+ new
@@ -139,5 +139,24 @@
-webkit-flex: $value;
-moz-flex: $value;
-ms-flex: $value;
flex: $value;
}
+
+//Inline navigation mixin
+
+@mixin inline-list($list-style: none,
+ $list-style-position: inside,
+ $padding: 10px,
+ $left-list-item-margin: 10px) {
+ @extend %clearfix;
+ margin: 0;
+ display: block;
+ list-style: $list-style;
+ list-style-position: $list-style-position;
+ padding: $padding;
+
+ & > li {
+ float: left;
+ margin-left: $left-list-item-margin;
+ }
+}