-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathtailwind.config.js
37 lines (37 loc) · 1.06 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./templates/**/*.{phtml,js}',
'./public/js/online.js',
'./src/PhpWorkshop/**/*.php',
'./assets/**/*.js',
'./assets/components/**/*.vue',
'./docs/**/*.{html,js,vue,ts,md}',
'./docs/.vitepress/**/*.{html,js,vue,ts,md}',
],
theme: {
extend: {
fontFamily: {
'open-sans': ['Open Sans, sans-serif'],
'work-sans': ['Work Sans, sans-serif'],
'orbitron': ['Orbitron, sans-serif'],
},
boxShadow: {
'brand-shadow': '-5px 5px 0px rgba(0, 0, 0, 0.25)',
},
backgroundImage: {
'nav-pattern': "url('/img/cloud/header-bg.svg')",
},
},
},
plugins: [
require('@tailwindcss/forms'),
require('tailwind-scrollbar')({
nocompatible: true,
preferredStrategy: 'pseudoelements',
}),
],
variants: {
scrollbar: ['rounded'],
},
};