This commit is contained in:
Nathan Bierema 2025-06-01 07:39:41 -04:00
parent 4754cc1ae9
commit c23a7b957d

View File

@ -24,11 +24,11 @@ const Toolbar = styled.div<Props>`
position: relative; position: relative;
${({ borderPosition, theme }) => ${({ borderPosition, theme }) =>
borderPosition && `border-${borderPosition}: 1px solid ${theme.base02};`} borderPosition && `border-${borderPosition}: 1px solid ${theme.base02};`}
& > div { & > div {
margin: auto ${(props) => (props.noBorder ? '0' : '1px;')}; margin: auto ${(props) => (props.noBorder ? '0' : '1px;')};
} }
& button { & button {
border-radius: 0; border-radius: 0;
${(props) => props.noBorder && 'border-color: transparent;'} ${(props) => props.noBorder && 'border-color: transparent;'}
@ -41,7 +41,7 @@ const Toolbar = styled.div<Props>`
text-align: left; text-align: left;
margin: auto 1px; margin: auto 1px;
flex-grow: 1; flex-grow: 1;
.Select-control { .Select-control {
cursor: pointer; cursor: pointer;
border-radius: 0 !important; border-radius: 0 !important;