13 lines
298 B
TypeScript
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',
|
|
},
|
|
})
|