@transferwise/neptune-css 0.0.0-experimental-2255abe → 0.0.0-experimental-ee20015
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.
- package/dist/css/alerts.css +2 -4
- package/dist/css/neptune.css +2 -4
- package/package.json +1 -1
- package/src/less/alerts.less +1 -2
package/dist/css/alerts.css
CHANGED
|
@@ -36,13 +36,11 @@
|
|
|
36
36
|
padding-left: var(--padding-small);
|
|
37
37
|
margin-top: 2px;
|
|
38
38
|
}
|
|
39
|
-
.alert .close
|
|
40
|
-
.alert .np-close-button {
|
|
39
|
+
.alert .close {
|
|
41
40
|
margin-top: 4px;
|
|
42
41
|
margin-top: var(--size-4);
|
|
43
42
|
}
|
|
44
|
-
.np-theme-personal .alert .close
|
|
45
|
-
.np-theme-personal .alert .np-close-button {
|
|
43
|
+
.np-theme-personal .alert .close {
|
|
46
44
|
margin-top: calc(8px * -1);
|
|
47
45
|
margin-top: calc(var(--size-8) * -1);
|
|
48
46
|
margin-right: calc(8px * -1);
|
package/dist/css/neptune.css
CHANGED
|
@@ -5976,14 +5976,12 @@ tbody.collapse.in {
|
|
|
5976
5976
|
margin-top: 2px;
|
|
5977
5977
|
}
|
|
5978
5978
|
|
|
5979
|
-
.alert .close
|
|
5980
|
-
.alert .np-close-button {
|
|
5979
|
+
.alert .close {
|
|
5981
5980
|
margin-top: 4px;
|
|
5982
5981
|
margin-top: var(--size-4);
|
|
5983
5982
|
}
|
|
5984
5983
|
|
|
5985
|
-
.np-theme-personal .alert .close
|
|
5986
|
-
.np-theme-personal .alert .np-close-button {
|
|
5984
|
+
.np-theme-personal .alert .close {
|
|
5987
5985
|
margin-top: calc(8px * -1);
|
|
5988
5986
|
margin-top: calc(var(--size-8) * -1);
|
|
5989
5987
|
margin-right: calc(8px * -1);
|
package/package.json
CHANGED