umwd-components 0.1.160 → 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.
@@ -148,7 +148,11 @@ 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
+ opacity: 0.9
155
+ }
152
156
  })));
153
157
  }))), /*#__PURE__*/React.createElement(Link, {
154
158
  href: "/",
@@ -144,7 +144,11 @@ 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
+ opacity: 0.9
151
+ }
148
152
  })));
149
153
  }))), /*#__PURE__*/React__default.createElement(Link, {
150
154
  href: "/",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "umwd-components",
3
- "version": "0.1.160",
3
+ "version": "0.1.162",
4
4
  "description": "UMWD Component library",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -200,7 +200,14 @@ function ScrollNavbar({ data }: { readonly data: NavbarProps }) {
200
200
  cursor: "pointer",
201
201
  }}
202
202
  >
203
- <Tab value={index} label={tab.name} />
203
+ <Tab
204
+ value={index}
205
+ label={tab.name}
206
+ sx={{
207
+ color: theme.palette.primary.contrastText,
208
+ opacity: 0.9,
209
+ }}
210
+ />
204
211
  </Link>
205
212
  </Box>
206
213
  );