mirror of
https://github.com/audacity/audacity.github.io.git
synced 2026-07-04 14:37:43 -05:00
17 lines
307 B
JavaScript
17 lines
307 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
|
|
theme: {
|
|
extend: {},
|
|
screens: {
|
|
'xs': '320px',
|
|
'sm': '640px',
|
|
'md': '768px',
|
|
'lg': '1024px',
|
|
'xl': '1280px',
|
|
'2xl': '1536px',
|
|
}
|
|
},
|
|
plugins: [],
|
|
}
|