@bento-core/tab 1.0.0-c3dc.4 → 1.0.0-c3dc.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 +1 -1
- package/src/Tabs.js +7 -1
package/package.json
CHANGED
package/src/Tabs.js
CHANGED
|
@@ -282,7 +282,13 @@ const TabItems = ({
|
|
|
282
282
|
vertical: 'top',
|
|
283
283
|
horizontal: 'center',
|
|
284
284
|
}}
|
|
285
|
-
style={{ marginTop: '
|
|
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 }) => {
|