1
0
Fork 0
traefik/webui/src/layout/Container.tsx

13 lines
298 B
TypeScript

import { Flex, styled } from '@traefiklabs/faency'
import breakpoints from 'utils/breakpoints'
export default styled(Flex, {
flexGrow: 1,
margin: '0 24px',
[`@media (min-width: ${breakpoints.laptopL})`]: {
maxWidth: `calc(${breakpoints.laptopL} - 96px)`,
margin: '0 auto',
},
})