Files
xsh-assistant-next/tailwind.config.ts
2024-02-26 09:23:09 +08:00

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'
}
}
}
}