@transferwise/neptune-css 14.0.12 → 14.0.13
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/dropdowns.css +1 -1
- package/dist/css/navbar.css +1 -1
- package/dist/css/neptune.css +1 -1
- package/package.json +2 -2
- package/src/less/dropdowns.less +6 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@transferwise/neptune-css",
|
|
3
3
|
"description": "Neptune CSS library",
|
|
4
|
-
"version": "14.0.
|
|
4
|
+
"version": "14.0.13",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"bin": {
|
|
54
54
|
"neptune-css-upgrade-util": "scripts/neptune-css-upgrader.js"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "fa67b256f55fcdd9161b5a3c8e7cb3338f057f9d"
|
|
57
57
|
}
|
package/src/less/dropdowns.less
CHANGED
|
@@ -292,10 +292,14 @@
|
|
|
292
292
|
.dropdown-header {
|
|
293
293
|
display: block;
|
|
294
294
|
padding: 8px 16px;
|
|
295
|
-
|
|
296
|
-
|
|
295
|
+
font-size: var(--font-size-14);
|
|
296
|
+
line-height: var(--line-height-body);
|
|
297
297
|
color: var(--color-content-secondary);
|
|
298
298
|
white-space: nowrap; // as with > li > a
|
|
299
|
+
|
|
300
|
+
.np-theme-personal & {
|
|
301
|
+
.np-text-title-group;
|
|
302
|
+
}
|
|
299
303
|
}
|
|
300
304
|
|
|
301
305
|
// Backdrop to catch body clicks on mobile, etc.
|