@bento-core/tab 1.0.0-c3dc.4 → 1.0.0-c3dc.6

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/Tabs.js CHANGED
@@ -277,7 +277,13 @@ const TabItems = _ref => {
277
277
  horizontal: 'center'
278
278
  },
279
279
  style: {
280
- marginTop: '10px'
280
+ marginTop: '0px'
281
+ },
282
+ PaperProps: {
283
+ style: {
284
+ border: '1.5px solid rgb(86, 102, 189)',
285
+ borderRadius: '5px'
286
+ }
281
287
  }
282
288
  }, /*#__PURE__*/_react.default.createElement(_core.List, {
283
289
  className: "popover-list"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bento-core/tab",
3
- "version": "1.0.0-c3dc.4",
3
+ "version": "1.0.0-c3dc.6",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
package/src/Tabs.js CHANGED
@@ -282,7 +282,13 @@ const TabItems = ({
282
282
  vertical: 'top',
283
283
  horizontal: 'center',
284
284
  }}
285
- style={{ marginTop: '10px' }}
285
+ style={{ marginTop: '0px' }}
286
+ PaperProps={{
287
+ style: {
288
+ border: '1.5px solid rgb(86, 102, 189)',
289
+ borderRadius: '5px',
290
+ },
291
+ }}
286
292
  >
287
293
  <List className="popover-list">
288
294
  {popupTabs.map(({ tab, originalIndex }) => {