@@ -50,15 +50,16 @@ export const Description = styled.p(
5050export const SectionHeader = styled . button < { open ?: Boolean } > ( ( { open } ) =>
5151 css ( {
5252 display : 'flex' ,
53- width : '100%' ,
5453 alignItems : 'center' ,
5554
56- color : '#fff' ,
55+ width : '100%' ,
56+ height : 32 ,
57+ paddingY : 0 ,
58+
5759 fontSize : 3 ,
5860 fontWeight : 'medium' ,
59- paddingY : 4 ,
60- paddingX : 2 ,
6161 background : 'transparent' ,
62+ color : '#fff' ,
6263
6364 border : 'none' ,
6465 borderBottom : '1px solid' ,
@@ -83,7 +84,7 @@ export const SectionHeader = styled.button<{ open?: Boolean }>(({ open }) =>
8384export const SectionBody = styled . div (
8485 css ( {
8586 paddingX : 4 ,
86- paddingTop : 4 ,
87+ paddingTop : 2 ,
8788 paddingBottom : 8 ,
8889 borderBottom : '1px solid' ,
8990 borderColor : 'grays.800' ,
@@ -104,7 +105,7 @@ export const Input = styled.input<{ code?: boolean }>(({ code }) =>
104105
105106 width : '100%' ,
106107 boxSizing : 'border-box' , // probably not right
107- height : 32 ,
108+ height : 24 ,
108109
109110 fontFamily : code ? 'code' : 'body' ,
110111
@@ -144,6 +145,7 @@ export const Select = styled(Input).attrs({ as: 'select' })(
144145 backgroundImage : `url(${ caret } )` ,
145146 backgroundRepeat : 'no-repeat' ,
146147 backgroundPosition : '96% 50%' ,
148+ height : 32 ,
147149 } )
148150) as StyledComponent <
149151 'select' ,
@@ -183,7 +185,7 @@ export const Option = styled.label<{
183185 css ( {
184186 justifyContent : 'space-between' ,
185187 alignItems : 'center' ,
186- minHeight : 32 ,
188+ minHeight : 24 ,
187189 lineHeight : 1.6 ,
188190 marginY : 2 ,
189191
0 commit comments