@sk-web-gui/core 0.1.15 → 0.1.16

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.15",
3
+ "version": "0.1.16",
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": "0c9dee6a0b989d6ff912b3da8e5009eba7fd89c4"
34
+ "gitHead": "6b946108d5420acd623bfb225c211d42b823acbb"
35
35
  }
@@ -9,31 +9,14 @@ module.exports = UserMenu = (colors) => ({
9
9
  },
10
10
 
11
11
  "&-header": {
12
- // "@apply flex flex-col text-left m-0 px-0 py-sm": {},
13
12
  '[aria-expanded="true"] &': {
14
13
  "@apply bg-hover": {},
15
14
  },
16
15
  },
17
- "&-body": {
18
- // "@apply p-0 m-0 py-sm bg-white": {},
19
- },
20
16
  "&-item": {
21
- "&.link": {
22
- "@apply text-white no-underline": {},
23
- },
24
- "@apply text-white cursor-pointer bg-hover": {
25
- a: {
26
- "@apply text-white px-md py-sm w-full": {},
27
- },
28
- "a.link": {
29
- "@apply text-white px-md py-sm w-full": {},
30
- },
31
- },
32
- },
33
- ".inactive > &-item": {
34
- "@apply bg-white text-black no-underline": {},
35
- "a.link": {
36
- "@apply text-black no-underline": {},
17
+ "@apply block px-lg py-md lg:px-md lg:py-sm w-full cursor-pointer text-black no-underline": {},
18
+ "&.active": {
19
+ "@apply bg-hover text-white no-underline": {},
37
20
  },
38
21
  },
39
22
  },