@sk-web-gui/core 0.1.5 → 0.1.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sk-web-gui/core",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "license": "MIT",
5
5
  "main": "src/index.js",
6
6
  "files": [
@@ -31,5 +31,5 @@
31
31
  "postcss-import": "^14.0.2",
32
32
  "tailwindcss": "^2.2.4"
33
33
  },
34
- "gitHead": "8393a866eb45c876ec3966d461ca3f0998e38cf4"
34
+ "gitHead": "53f5b4b95cd972452246b9235621e10323c28539"
35
35
  }
@@ -18,16 +18,23 @@ module.exports = UserMenu = (colors) => ({
18
18
  // "@apply p-0 m-0 py-sm bg-white": {},
19
19
  },
20
20
  "&-item": {
21
- "@apply lg:text-black cursor-pointer": {},
22
- "a.link": {
23
- "@apply text-black": {},
21
+ "&.link": {
22
+ "@apply text-white no-underline": {},
24
23
  },
25
- "&.hovered": {
26
- "@apply bg-hover text-white no-underline": {},
24
+ "@apply text-white cursor-pointer bg-hover": {
25
+ a: {
26
+ "@apply text-white px-md py-sm w-full": {},
27
+ },
27
28
  "a.link": {
28
- "@apply text-white no-underline": {},
29
+ "@apply text-white px-md py-sm w-full": {},
29
30
  },
30
31
  },
31
32
  },
33
+ ".inactive > &-item": {
34
+ "@apply bg-white text-black no-underline": {},
35
+ "a.link": {
36
+ "@apply text-black no-underline": {},
37
+ },
38
+ },
32
39
  },
33
40
  });