14 lines
262 B
TypeScript
14 lines
262 B
TypeScript
import type { Config } from 'tailwindcss'
|
|
|
|
export default <Partial<Config>>{
|
|
theme: {
|
|
extend: {
|
|
aspectRatio: {
|
|
auto: 'auto',
|
|
square: '1 / 1',
|
|
video: '16 / 9'
|
|
}
|
|
}
|
|
}
|
|
}
|