@portnet/ui 0.1.25 → 0.1.27
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.
|
@@ -75,12 +75,14 @@ const StyledTabs = (0, _styles.styled)( /*#__PURE__*/React.forwardRef((props, re
|
|
|
75
75
|
// Make tabs rounded
|
|
76
76
|
margin: "0 4px",
|
|
77
77
|
// Add space between tabs
|
|
78
|
-
minHeight: "36px"
|
|
78
|
+
minHeight: "36px",
|
|
79
|
+
// Adjust minimum height if necessary
|
|
80
|
+
background: "#f0f0f0" // Add grey background to non-selected tabs
|
|
79
81
|
},
|
|
80
82
|
"& .Mui-selected": {
|
|
81
83
|
color: "#fff",
|
|
82
84
|
// Change this to white for selected tab text
|
|
83
|
-
background: "
|
|
85
|
+
background: "rgb(2 156 253 / 52%)" // Change this to blue for selected tab background
|
|
84
86
|
},
|
|
85
87
|
"& .MuiTabs-indicator": {
|
|
86
88
|
backgroundColor: "transparent" // Make the indicator transparent
|