-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind-events.config.js
41 lines (40 loc) · 1.02 KB
/
tailwind-events.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
/**
* This is the Tailwind CSS configuration file for the Hyde Events Module package.
*
* @package Melasistema\HydeEventsModule
* @author Luca Visciola
* @copyright 2024 Luca Visciola
* @license MIT License
*
* To include this configuration in your project's `tailwind.config.js`,
* you need to require and merge it with your existing configuration.
*
* Example usage in `tailwind.config.js`:
*
* const hydeEventsConfig = require('./tailwind-events.config.js');
*
* module.exports = {
* darkMode: 'class',
* content: [
* ...hydeEventsConfig.content, // Merge Hyde Events Module content paths
* ],
* theme: {
* extend: {
* ...hydeEventsConfig.theme.extend, // Merge the extend
* },
* },
* };
**/
module.exports = {
darkMode: 'class',
content: [
'./vendor/melasistema/hyde-events-module/resources/views/**/*.blade.php',
],
theme: {
extend: {
minWidth: {
'1/5': '10rem',
},
},
},
};