personal-site/tailwind.config.js

32 lines
761 B
JavaScript
Raw Normal View History

2022-03-11 10:43:00 +00:00
module.exports = {
2022-03-11 12:36:23 +00:00
content: ["./components/**/*.{html,js,jsx}", "./pages/**/*.jsx", , "./layouts/**/*.jsx"],
2022-03-11 10:43:00 +00:00
theme: {
screens: {
xs: "350px",
sm: "450px",
md: "600px",
sl: "800px",
lg: "976px",
xl: "1200px",
},
// colors: {},
fontFamily: {
sans: ["Graphik", "sans-serif"],
serif: ["Merriweather", "serif"],
},
// extend: {
// spacing: {
// 128: "32rem",
// 144: "36rem",
// },
// borderRadius: {
// "4xl": "2rem",
// },
// },
},
plugins: [],
corePlugins: {
preflight: false,
},
};