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