-
Notifications
You must be signed in to change notification settings - Fork 875
Expand file tree
/
Copy pathtailwind.config.js
More file actions
33 lines (32 loc) · 897 Bytes
/
tailwind.config.js
File metadata and controls
33 lines (32 loc) · 897 Bytes
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
/**
* Copyright since 2025 Mifos Initiative
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
/** @type {import('tailwindcss').Config} */
module.exports = {
mode: process.env.TAILWIND_MODE ? 'jit' : '',
content: [
'./src/app/**/*.{html,js}',
'./index.html'
],
theme: {
extend: {
animation: {
wiggle: 'wiggle 1s ease-in-out infinite',
'fade-in-down': 'fade-in-down 0.3s ease-out',
'fade-out-down': 'fade-out-down 0.3s ease-out',
'fade-in-up': 'fade-in-up 0.3s ease-out',
'fade-out-up': 'fade-out-up 0.3s ease-out'
},
boxShadow: {
custom: '0px 0px 50px 0px rgb(82 63 105 / 15%)'
}
}
},
plugins: [
require('@tailwindcss/forms')
]
};