@transferwise/neptune-css 0.0.0-experimental-17cb250 → 0.0.0-experimental-e4e09f5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1083,10 +1083,15 @@ html:not([dir="rtl"]) .p-x-5 {
1083
1083
  padding-bottom: 40px !important;
1084
1084
  padding-bottom: var(--size-40) !important;
1085
1085
  }
1086
+ .gap-y-8,
1086
1087
  .gap-y-1 {
1087
1088
  row-gap: 8px;
1088
1089
  row-gap: var(--size-8);
1089
1090
  }
1091
+ .gap-y-4 {
1092
+ row-gap: 4px;
1093
+ row-gap: var(--size-4);
1094
+ }
1090
1095
  .m-a-panel {
1091
1096
  margin-top: 16px !important;
1092
1097
  margin-top: var(--size-16) !important;
@@ -5088,11 +5088,17 @@ html:not([dir="rtl"]) .p-x-5 {
5088
5088
  padding-bottom: var(--size-40) !important;
5089
5089
  }
5090
5090
 
5091
+ .gap-y-8,
5091
5092
  .gap-y-1 {
5092
5093
  row-gap: 8px;
5093
5094
  row-gap: var(--size-8);
5094
5095
  }
5095
5096
 
5097
+ .gap-y-4 {
5098
+ row-gap: 4px;
5099
+ row-gap: var(--size-4);
5100
+ }
5101
+
5096
5102
  .m-a-panel {
5097
5103
  margin-top: 16px !important;
5098
5104
  margin-top: var(--size-16) !important;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@transferwise/neptune-css",
3
3
  "description": "Neptune CSS library",
4
- "version": "0.0.0-experimental-17cb250",
4
+ "version": "0.0.0-experimental-e4e09f5",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
@@ -10,10 +10,16 @@
10
10
  .spacing-vertical(4, var(--size-32));
11
11
  .spacing-vertical(5, var(--size-40));
12
12
 
13
+ .gap-y-8,
14
+ // DEPRECATED: Use .gap-y-8 instead
13
15
  .gap-y-1 {
14
16
  row-gap: var(--size-8);
15
17
  }
16
18
 
19
+ .gap-y-4 {
20
+ row-gap: var(--size-4);
21
+ }
22
+
17
23
  .responsive-spacing(panel, var(--size-16), var(--size-24), var(--size-32));
18
24
  .responsive-spacing-vertical(section-1, var(--size-16), var(--size-24), var(--size-32));
19
25
  .responsive-spacing-vertical(section-2, var(--size-32), var(--size-48), var(--size-64));