1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

fix: project settings table overflow (#7288)

This commit is contained in:
Mateusz Kwasniewski 2024-06-05 14:05:41 +02:00 committed by GitHub
parent 1a6197660f
commit c869ea35e4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,7 +4,7 @@ import { VerticalTab } from './VerticalTab/VerticalTab';
const StyledTabPage = styled('div')(({ theme }) => ({
display: 'flex',
gap: theme.spacing(3),
[theme.breakpoints.down('md')]: {
[theme.breakpoints.down('xl')]: {
flexDirection: 'column',
},
}));
@ -21,7 +21,7 @@ const StyledTabs = styled('div')(({ theme }) => ({
gap: theme.spacing(1),
width: theme.spacing(30),
flexShrink: 0,
[theme.breakpoints.down('md')]: {
[theme.breakpoints.down('xl')]: {
width: '100%',
},
}));