1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-04 00:18:01 +01:00

fix: wrap chips in feature strategy lists (#1221)

This commit is contained in:
olav 2022-08-17 16:42:11 +02:00 committed by GitHub
parent fdc025d66a
commit d3572cf53a

View File

@ -29,6 +29,7 @@ const Container = styled('div')(({ theme }) => ({
const ChipsList = styled('div')(({ theme }) => ({
display: 'flex',
gap: theme.spacing(1),
flexWrap: 'wrap',
}));
const InputContainer = styled('div')(({ theme }) => ({