mirror of
https://github.com/audacity/audacity.github.io.git
synced 2026-04-13 21:29:15 -05:00
18 lines
381 B
JavaScript
18 lines
381 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
|
|
theme: {
|
|
extend: {},
|
|
screens: {
|
|
xxs: "320px",
|
|
xs: "480px",
|
|
sm: "640px",
|
|
md: "768px",
|
|
lg: "1024px",
|
|
xl: "1280px",
|
|
"2xl": "1536px",
|
|
},
|
|
},
|
|
plugins: [require("@tailwindcss/typography")],
|
|
};
|