Browse code

Support contao image float classes

Benjamin Roth authored on27/10/2017 13:43:58
Showing1 changed files
... ...
@@ -119,6 +119,21 @@ img {
119 119
 }
120 120
 
121 121
 /**
122
+ * Support contao image float classes
123
+ */
124
+.image_container {
125
+  &.float_right {
126
+    float: right;
127
+    margin: 0 0 $gutter-default $gutter-default;
128
+  }
129
+
130
+  &.float_left {
131
+    float: left;
132
+    margin: 0 $gutter-default $gutter-default 0;
133
+  }
134
+}
135
+
136
+/**
122 137
  * Clear floats
123 138
  */
124 139