blob: f6d605463d3a67d6cbbe3bd186d13f24b1203a4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js,cljs}"],
theme: {
extend: {
fontFamily: {
nunito: ['nunito-light', 'sans-serif'],
roboto: ['roboto-light', 'sans-serif'],
},
screens: {
'xs': '480px',
'ml': '930px',
},
},
},
plugins: [
require('@tailwindcss/forms')
],
}
|