-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
43 lines (42 loc) · 1.05 KB
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"./src/**/*.{html,js,jsx,ts,tsx}",
],
theme: {
extend: {
fontFamily: {
montserrat: ['Montserrat', 'sans-serif'],
lato: ['Lato', 'sans-serif'],
onest: ['Onest', 'sans-serif'],
robotoMono: ['Roboto Mono', 'monospace'],
mooli: ['Mooli', 'sans-serif'],
mavenPro: ['Maven Pro', 'sans-serif'],
oxanium: ['Oxanium', 'cursive'],
mPlusp: ['M PLUS 1p'],
jaldi: ['Jaldi', 'sans-serif'],
k2d: ['K2D', 'sans-serif']
}
},
},
plugins: [
require('tailwind-scrollbar')({ nocompatible: true }),
function ({ addUtilities }) {
const newUtilities = {
"no-scrollbar::-webkit-scrollbar":{
display: "none",
},
".no-scrollbar": {
"-ms-overflow-style": "none",
"scrollbar-width": "none",
},
}
addUtilities (newUtilities);
}
],
screens: {
xs: "350px",
}
}