fln-espranza 1.1.2 → 1.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/{index.js → index.ts} +0 -0
- package/package.json +2 -2
- package/tailwind.config.js +33 -0
package/{index.js → index.ts}
RENAMED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fln-espranza",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"description": "All components used inside FLN Project of Espranza Innovations",
|
|
5
|
-
"main": "index.
|
|
5
|
+
"main": "index.ts",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
8
|
},
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
// tailwind.config.js
|
|
2
|
+
const {
|
|
3
|
+
plugin
|
|
4
|
+
} = require('twrnc');
|
|
5
|
+
|
|
6
|
+
// or, you can use tailwinds plugin function:
|
|
7
|
+
// const plugin = require('tailwindcss/plugin');
|
|
8
|
+
|
|
9
|
+
module.exports = {
|
|
10
|
+
plugins: [
|
|
11
|
+
plugin(({
|
|
12
|
+
addUtilities
|
|
13
|
+
}) => {
|
|
14
|
+
addUtilities({
|
|
15
|
+
'list-title': 'font-bold',
|
|
16
|
+
'list-body': 'opacity-60',
|
|
17
|
+
'list-date': 'opacity-30'
|
|
18
|
+
})
|
|
19
|
+
})
|
|
20
|
+
],
|
|
21
|
+
theme: {
|
|
22
|
+
fontFamily: {},
|
|
23
|
+
extend: {
|
|
24
|
+
spacing: {
|
|
25
|
+
'8xl': '96rem',
|
|
26
|
+
'9xl': '128rem',
|
|
27
|
+
},
|
|
28
|
+
borderRadius: {
|
|
29
|
+
'4xl': '2rem',
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
}
|