@transferwise/neptune-css 12.0.3 → 12.0.4
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/CHANGELOG.md +11 -0
- package/dist/css/buttons.css +1 -1
- package/dist/css/neptune.css +1 -1
- package/package.json +2 -2
- package/src/less/buttons.less +8 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@transferwise/neptune-css",
|
|
3
3
|
"description": "Neptune CSS library",
|
|
4
|
-
"version": "12.0.
|
|
4
|
+
"version": "12.0.4",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"bin": {
|
|
61
61
|
"neptune-css-upgrade-util": "scripts/neptune-css-upgrader.js"
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "40cc7aa63b6cf1fc691676e23f95a4fee8fd3f6d"
|
|
64
64
|
}
|
package/src/less/buttons.less
CHANGED
|
@@ -471,15 +471,19 @@ input[type="button"] {
|
|
|
471
471
|
|
|
472
472
|
.tw-icon {
|
|
473
473
|
position: absolute;
|
|
474
|
-
.right(
|
|
474
|
+
.right(var(--size-16));
|
|
475
475
|
|
|
476
|
-
|
|
476
|
+
&:not(.tw-chevron) {
|
|
477
|
+
position: initial;
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
top: var(--size-16);
|
|
477
481
|
}
|
|
478
482
|
|
|
479
483
|
&.btn-sm .tw-icon {
|
|
480
|
-
.right(
|
|
484
|
+
.right(var(--size-8));
|
|
481
485
|
|
|
482
|
-
top:
|
|
486
|
+
top: var(--size-8);
|
|
483
487
|
}
|
|
484
488
|
|
|
485
489
|
&.btn-lg .tw-icon {
|