@eturnity/eturnity_reusable_components 8.31.4 → 8.31.5
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
@@ -107,8 +107,6 @@
|
|
107
107
|
display: flex;
|
108
108
|
cursor: pointer;
|
109
109
|
width: 100%;
|
110
|
-
|
111
|
-
border-bottom: 1px solid ${(props) => props.theme.colors.purple7};
|
112
110
|
`
|
113
111
|
|
114
112
|
const TabAttrs = { isActive: Boolean, fullSize: Boolean, isDisabled: Boolean }
|
@@ -129,8 +127,8 @@
|
|
129
127
|
background-color: ${(props) => props.theme.colors.white};
|
130
128
|
border-bottom: ${(props) =>
|
131
129
|
props.isActive
|
132
|
-
? '
|
133
|
-
: '
|
130
|
+
? '2px solid' + props.theme.semanticColors.purple[400]
|
131
|
+
: '2px solid' + props.theme.semanticColors.grey[400]};
|
134
132
|
`
|
135
133
|
|
136
134
|
const TabTextAttrs = { isActive: Boolean, isDisabled: Boolean }
|