mirror of
https://github.com/kamranahmedse/driver.js.git
synced 2026-09-01 14:56:01 +08:00
19 lines
396 B
JavaScript
19 lines
396 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
|
|
theme: {
|
|
screens: {
|
|
'sh': {
|
|
'raw': '(min-height: 750px)',
|
|
},
|
|
...require('tailwindcss/defaultConfig').theme.screens,
|
|
},
|
|
container: {
|
|
},
|
|
extend: {},
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/typography'),
|
|
],
|
|
};
|