profinansy-ui-lib 1.0.17 → 1.0.18
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/dist/index.js +11 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -300,16 +300,25 @@
|
|
|
300
300
|
width: 100%;
|
|
301
301
|
}
|
|
302
302
|
`,t.HeaderLink=a.default.button`
|
|
303
|
+
position: relative;
|
|
303
304
|
color: ${e=>e.active?"#9B8EFF":"#c0c0c0"};
|
|
304
305
|
border: none;
|
|
305
|
-
border-bottom: ${e=>e.active?"3px solid":"none"};
|
|
306
306
|
background: none;
|
|
307
|
-
border-color: ${e=>e.active&&!e.sm?"#9B8EFF":"transparent"};
|
|
308
307
|
font-size: 15px;
|
|
309
308
|
padding: 0 0 4px 0;
|
|
310
309
|
cursor: pointer;
|
|
311
310
|
transition: 0.2s color;
|
|
312
311
|
line-height: normal !important;
|
|
312
|
+
&::after {
|
|
313
|
+
position: absolute;
|
|
314
|
+
display: ${e=>e.active&&!e.sm?"block":"none"};
|
|
315
|
+
left: 0;
|
|
316
|
+
bottom: -4px;
|
|
317
|
+
content: '';
|
|
318
|
+
height: 3px;
|
|
319
|
+
width: 100%;
|
|
320
|
+
background-color: #9b8eff;
|
|
321
|
+
}
|
|
313
322
|
@media (min-width: 1050px) {
|
|
314
323
|
&:hover {
|
|
315
324
|
color: #9b8eff;
|