intelicoreact 0.1.64 → 0.1.65

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.
@@ -70,6 +70,7 @@
70
70
  }
71
71
 
72
72
  &__item {
73
+ position: relative;
73
74
  padding: 10px 10px 14px 10px;
74
75
  cursor: pointer;
75
76
  font-size: 13px;
@@ -77,19 +78,38 @@
77
78
  border-bottom: 1px solid #cfcfcf;
78
79
  user-select: none;
79
80
  margin-bottom: -1px;
80
- border-bottom: 2px solid transparent;
81
- opacity: 65%;
82
81
  text-decoration: none !important;
82
+ display: flex;
83
+ align-items: center;
84
+ justify-content: center;
85
+ transition: all 0.2s ease-out;
86
+
87
+ &::after {
88
+ content: "";
89
+ width: 0;
90
+ height: 2px;
91
+ position: absolute;
92
+ bottom: 0;
93
+ background-color: #6b81dd;
94
+ transition: all 0.2s ease-out;
95
+ }
96
+
83
97
  &:hover {
84
- border-bottom: 2px solid rgba(107, 129, 221, 0.65);
85
- opacity: 100%;
98
+ &::after {
99
+ width: 50%;
100
+ opacity: 0.6;
101
+ }
86
102
  }
87
103
 
88
104
  &.active {
89
- border-bottom: 2px solid #6b81dd;
90
105
  font-weight: 500;
91
106
  cursor: default;
92
107
  opacity: 100%;
108
+
109
+ &::after {
110
+ width: 100%;
111
+ opacity: 1;
112
+ }
93
113
  }
94
114
  }
95
115
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "intelicoreact",
3
- "version": "0.1.64",
4
- "description": "fix UserBox crush",
3
+ "version": "0.1.65",
4
+ "description": "",
5
5
  "main": "dist/index.js",
6
6
  "files": [
7
7
  "dist/*",
@@ -11,18 +11,19 @@
11
11
  ],
12
12
  "scripts": {
13
13
  "test": "echo \"Error: no test specified\" && exit 1",
14
- "build": "babel src --out-dir dist --copy-files --no-copy-ignored"
14
+ "build": "node IntelicoKitVersioningBot/main.js && babel src --out-dir dist --copy-files --no-copy-ignored",
15
+ "release": "babel src --out-dir dist --copy-files --no-copy-ignored && npm publish && node IntelicoKitVersioningBot/main.js"
15
16
  },
16
17
  "author": "Andrey Isakov",
17
18
  "license": "ISC",
18
19
  "dependencies": {
20
+ "anme": "^1.0.1",
21
+ "classnames": "^2.3.1",
19
22
  "moment": "^2.29.1",
20
23
  "moment-timezone": "^0.5.34",
21
24
  "react": "^17.0.2",
22
25
  "react-feather": "^2.0.9",
23
- "react-input-mask": "^2.0.4",
24
- "classnames": "^2.3.1",
25
- "anme": "^1.0.1"
26
+ "react-input-mask": "^2.0.4"
26
27
  },
27
28
  "devDependencies": {
28
29
  "@babel/cli": "^7.15.7",