File size: 788 Bytes
b39afbe
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
42
43
44
45
46
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme')

export default {
  mode: 'jit',
  content: [
    "./index.html",
    "./login.html",
    "./src/**/*.{js,ts,jsx,tsx,hbs}",
  ],
  safelist:[
    'border-2'
  ],
  theme: {
    extend: {
      blur:
      {
        'xs': '2px',
        'xxs': '1px',
      },
      fontSize:
      {
        'xxs': '0.65rem'
      },
      screens: {
        'xs': '375px',
        ...defaultTheme.screens,
      },
      minHeight:
      {
        '6': '24px',
        '7': '28px',
        '8': 2 + 'rem',
      },
      minWidth: {
        '2': '2px',
        '32': '32px',
        '64': '64px',
        '128': '128px',
        '250': '250px',

      },
    },
  },
  plugins: ['@tailwindcss/forms'],
}