|
@@ -0,0 +1,27 @@
|
|
|
+/*
|
|
|
+ * Margins
|
|
|
+ */
|
|
|
+
|
|
|
+.margin-top-zero {
|
|
|
+ margin-top: 0 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.margin-top-half {
|
|
|
+ margin-top: (0.5 * map-deep-get($config-global, "spacing", "unit")) !important;
|
|
|
+}
|
|
|
+
|
|
|
+.margin-top-default {
|
|
|
+ margin-top: map-deep-get($config-global, "spacing", "unit") !important;
|
|
|
+}
|
|
|
+
|
|
|
+.margin-bottom-zero {
|
|
|
+ margin-bottom: 0 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.margin-bottom-half {
|
|
|
+ margin-bottom: (0.5 * map-deep-get($config-global, "spacing", "unit")) !important;
|
|
|
+}
|
|
|
+
|
|
|
+.margin-bottom-default {
|
|
|
+ margin-bottom: map-deep-get($config-global, "spacing", "unit") !important;
|
|
|
+}
|