@bcgov-sso/common-react-components 1.28.2 → 1.28.3
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/cjs/index.js +12 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +12 -0
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -23306,10 +23306,22 @@ const StyledTabs = qe(ForwardTabs) `
|
|
|
23306
23306
|
font-size: 18px;
|
|
23307
23307
|
}
|
|
23308
23308
|
|
|
23309
|
+
.rc-tabs-nav-list {
|
|
23310
|
+
border-bottom: 1px solid #dee2e6;
|
|
23311
|
+
}
|
|
23312
|
+
|
|
23313
|
+
.rc-tabs-nav-list:hover {
|
|
23314
|
+
cursor: pointer;
|
|
23315
|
+
}
|
|
23316
|
+
|
|
23309
23317
|
.rc-tabs-tab-active {
|
|
23310
23318
|
border-bottom: 3px solid orange;
|
|
23311
23319
|
font-weight: 600;
|
|
23312
23320
|
}
|
|
23321
|
+
|
|
23322
|
+
.rc-tabs-nav-operations {
|
|
23323
|
+
display: none;
|
|
23324
|
+
}
|
|
23313
23325
|
`;
|
|
23314
23326
|
const Tab = TabPane;
|
|
23315
23327
|
|