umwd-components 0.1.161 → 0.1.162
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.
|
@@ -150,7 +150,8 @@ function ScrollNavbar(_ref) {
|
|
|
150
150
|
value: index,
|
|
151
151
|
label: tab.name,
|
|
152
152
|
sx: {
|
|
153
|
-
color: theme.palette.primary.contrastText
|
|
153
|
+
color: theme.palette.primary.contrastText,
|
|
154
|
+
opacity: 0.9
|
|
154
155
|
}
|
|
155
156
|
})));
|
|
156
157
|
}))), /*#__PURE__*/React.createElement(Link, {
|
|
@@ -146,7 +146,8 @@ function ScrollNavbar(_ref) {
|
|
|
146
146
|
value: index,
|
|
147
147
|
label: tab.name,
|
|
148
148
|
sx: {
|
|
149
|
-
color: theme.palette.primary.contrastText
|
|
149
|
+
color: theme.palette.primary.contrastText,
|
|
150
|
+
opacity: 0.9
|
|
150
151
|
}
|
|
151
152
|
})));
|
|
152
153
|
}))), /*#__PURE__*/React__default.createElement(Link, {
|
package/package.json
CHANGED
|
@@ -203,7 +203,10 @@ function ScrollNavbar({ data }: { readonly data: NavbarProps }) {
|
|
|
203
203
|
<Tab
|
|
204
204
|
value={index}
|
|
205
205
|
label={tab.name}
|
|
206
|
-
sx={{
|
|
206
|
+
sx={{
|
|
207
|
+
color: theme.palette.primary.contrastText,
|
|
208
|
+
opacity: 0.9,
|
|
209
|
+
}}
|
|
207
210
|
/>
|
|
208
211
|
</Link>
|
|
209
212
|
</Box>
|