mirror of
https://github.com/audacity/audacity.github.io.git
synced 2026-06-13 12:30:38 -05:00
19 lines
369 B
JavaScript
19 lines
369 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: [
|
|
require("@tailwindcss/typography")
|
|
],
|
|
};
|