MIF_E31221407_FE/tailwind.config.ts

23 lines
493 B
TypeScript

import type { Config } from 'tailwindcss'
export default <Partial<Config>>{
theme: {
extend: {
aspectRatio: {
auto: 'auto',
square: '1 / 1',
video: '16 / 9'
}
},
screens: {
'mobile': '360px',
'tablet': '520px',
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1280px',
'2xl': '1440px',
}
}
}