Increase dropdown border width (#581)

main
Sean 6 years ago committed by Michael Fix
parent 3248f82298
commit 32e09c9e25

@ -174,6 +174,7 @@ const SelectedItem = ({ getToggleButtonProps, getInputProps, children, isOpen, c
.dropdown-display.is-open { .dropdown-display.is-open {
border-radius: 3px 3px 0 0; border-radius: 3px 3px 0 0;
border-width: 2px;
} }
.dropdown-display-text { .dropdown-display-text {
@ -201,8 +202,8 @@ const ListItems = ({ children, color }) => {
<style jsx> <style jsx>
{` {`
.dropdown-list { .dropdown-list {
margin-top: -1px; margin-top: -2px;
border: 1px solid ${color || COLORS.SECONDARY}; border: 2px solid ${color || COLORS.SECONDARY};
border-radius: 0 0 3px 3px; border-radius: 0 0 3px 3px;
max-height: 350px; max-height: 350px;
overflow-y: scroll; overflow-y: scroll;

Loading…
Cancel
Save