|
@@ -14,6 +14,18 @@
|
|
|
margin-top: map-deep-get($config-global, "spacing", "vertical") !important;
|
|
|
}
|
|
|
|
|
|
+.margin-right-none {
|
|
|
+ margin-top: 0 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.margin-right-half {
|
|
|
+ margin-top: (0.5 * map-deep-get($config-global, "spacing", "vertical")) !important;
|
|
|
+}
|
|
|
+
|
|
|
+.margin-right-default {
|
|
|
+ margin-top: map-deep-get($config-global, "spacing", "vertical") !important;
|
|
|
+}
|
|
|
+
|
|
|
.margin-bottom-none {
|
|
|
margin-bottom: 0 !important;
|
|
|
}
|
|
@@ -25,3 +37,68 @@
|
|
|
.margin-bottom-default {
|
|
|
margin-bottom: map-deep-get($config-global, "spacing", "vertical") !important;
|
|
|
}
|
|
|
+
|
|
|
+.margin-left-none {
|
|
|
+ margin-top: 0 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.margin-left-half {
|
|
|
+ margin-top: (0.5 * map-deep-get($config-global, "spacing", "vertical")) !important;
|
|
|
+}
|
|
|
+
|
|
|
+.margin-left-default {
|
|
|
+ margin-top: map-deep-get($config-global, "spacing", "vertical") !important;
|
|
|
+}
|
|
|
+
|
|
|
+/*
|
|
|
+ * Padding
|
|
|
+ */
|
|
|
+
|
|
|
+.padding-top-none {
|
|
|
+ padding-top: 0 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.padding-top-half {
|
|
|
+ padding-top: (0.5 * map-deep-get($config-global, "spacing", "vertical")) !important;
|
|
|
+}
|
|
|
+
|
|
|
+.padding-top-default {
|
|
|
+ padding-top: map-deep-get($config-global, "spacing", "vertical") !important;
|
|
|
+}
|
|
|
+
|
|
|
+.padding-right-none {
|
|
|
+ padding-top: 0 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.padding-right-half {
|
|
|
+ padding-top: (0.5 * map-deep-get($config-global, "spacing", "vertical")) !important;
|
|
|
+}
|
|
|
+
|
|
|
+.padding-right-default {
|
|
|
+ padding-top: map-deep-get($config-global, "spacing", "vertical") !important;
|
|
|
+}
|
|
|
+
|
|
|
+.padding-bottom-none {
|
|
|
+ padding-bottom: 0 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.padding-bottom-half {
|
|
|
+ padding-bottom: (0.5 * map-deep-get($config-global, "spacing", "vertical")) !important;
|
|
|
+}
|
|
|
+
|
|
|
+.padding-bottom-default {
|
|
|
+ padding-bottom: map-deep-get($config-global, "spacing", "vertical") !important;
|
|
|
+}
|
|
|
+
|
|
|
+.padding-left-none {
|
|
|
+ padding-top: 0 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.padding-left-half {
|
|
|
+ padding-top: (0.5 * map-deep-get($config-global, "spacing", "vertical")) !important;
|
|
|
+}
|
|
|
+
|
|
|
+.padding-left-default {
|
|
|
+ padding-top: map-deep-get($config-global, "spacing", "vertical") !important;
|
|
|
+}
|
|
|
+
|