@bitrise/bitkit 11.4.1 → 11.4.2
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
CHANGED
|
@@ -128,10 +128,7 @@ const LegacyBaseStyle: ({ colorScheme, variant }: Pick<StyleFunctionProps, 'colo
|
|
|
128
128
|
|
|
129
129
|
const BaseStyle: () => CSSObject = () => ({
|
|
130
130
|
item: {
|
|
131
|
-
|
|
132
|
-
boxShadow: 'none',
|
|
133
|
-
borderTopStyle: 'solid',
|
|
134
|
-
borderTopWidth: '1px',
|
|
131
|
+
borderTop: '1px solid',
|
|
135
132
|
borderTopColor: 'neutral.90',
|
|
136
133
|
},
|
|
137
134
|
button: {
|
|
@@ -145,9 +142,7 @@ const BaseStyle: () => CSSObject = () => ({
|
|
|
145
142
|
_hover: {
|
|
146
143
|
background: 'neutral.93',
|
|
147
144
|
},
|
|
148
|
-
|
|
149
|
-
borderBottomLeftRadius: '0',
|
|
150
|
-
borderBottomRightRadius: '0',
|
|
145
|
+
_active: {
|
|
151
146
|
background: 'neutral.90',
|
|
152
147
|
},
|
|
153
148
|
},
|
|
@@ -157,7 +152,12 @@ const BaseStyle: () => CSSObject = () => ({
|
|
|
157
152
|
marginLeft: '16',
|
|
158
153
|
},
|
|
159
154
|
panel: {
|
|
160
|
-
|
|
155
|
+
paddingBlockEnd: '16',
|
|
156
|
+
paddingInline: '16',
|
|
157
|
+
},
|
|
158
|
+
root: {
|
|
159
|
+
borderBottom: '1px solid',
|
|
160
|
+
borderBottomColor: 'neutral.90',
|
|
161
161
|
},
|
|
162
162
|
});
|
|
163
163
|
|