Update AxSelect styles

This commit is contained in:
Justin Edmund 2022-12-20 23:07:11 -08:00
parent 1fbc6a5949
commit 9cbba094f9

View file

@ -23,25 +23,24 @@
flex-direction: row; flex-direction: row;
gap: $unit; gap: $unit;
select { .SelectTrigger {
flex-grow: 1; flex-grow: 1;
margin: 0; margin: 0;
} }
.Input { input {
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
border: none; border: none;
background-color: $grey-90; border-radius: $input-corner;
border-radius: 6px;
box-sizing: border-box; box-sizing: border-box;
color: $grey-15; display: none;
height: $unit * 6;
display: block;
font-size: $font-regular;
padding: $unit;
text-align: right; text-align: right;
min-width: 100px; min-width: 100px;
width: 100px; width: 100px;
&.Visible {
display: block;
}
} }
} }
} }