@sk-web-gui/core 0.1.31 → 0.1.32
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 +2 -2
- package/src/components/header.js +3 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sk-web-gui/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.32",
|
|
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": "
|
|
34
|
+
"gitHead": "6bd9d4ca5c29248aadb681de700297c9a8dd8978"
|
|
35
35
|
}
|
package/src/components/header.js
CHANGED
|
@@ -16,20 +16,16 @@ module.exports = Header = (colors) => ({
|
|
|
16
16
|
[`@apply border-none`]: {},
|
|
17
17
|
},
|
|
18
18
|
|
|
19
|
-
"&-innerwrapper": {
|
|
20
|
-
"@apply flex lg:h-[112px] shadow-lg relative mx-auto px-7 pt-[22px] pb-[8px] z-10": {},
|
|
21
|
-
},
|
|
22
|
-
|
|
23
19
|
"&-container": {
|
|
24
|
-
"@apply
|
|
20
|
+
"@apply flex lg:h-[112px] shadow-lg relative mx-auto px-7 pt-[22px] pb-[8px] z-10": {},
|
|
25
21
|
},
|
|
26
22
|
|
|
27
23
|
"&-content": {
|
|
28
|
-
"@apply flex items-center flex-shrink-0 text-
|
|
24
|
+
"@apply flex items-center w-full justify-between m-auto flex-shrink-0 text-body max-w-[140rem]": {},
|
|
29
25
|
},
|
|
30
26
|
|
|
31
27
|
"&-usermenu": {
|
|
32
|
-
"@apply block flex-shrink lg:flex lg:items-center lg:w-auto": {},
|
|
28
|
+
"@apply lg:-mr-lg block flex-shrink lg:flex lg:items-center lg:w-auto": {},
|
|
33
29
|
|
|
34
30
|
"&-content": {
|
|
35
31
|
"@apply flex flex-grow lg:flex justify-end items-center lg:w-auto": {},
|