fln-espranza 1.1.1 → 1.1.3

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.
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fln-espranza",
3
- "version": "1.1.1",
3
+ "version": "1.1.3",
4
4
  "description": "All components used inside FLN Project of Espranza Innovations",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -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
+ }