|
1 | 1 | /** @type {import('tailwindcss').Config} */
|
2 | 2 | module.exports = {
|
3 |
| - content: [ |
4 |
| - "./index.html", |
5 |
| - "./src/**/*.{js,ts,jsx,tsx}", |
6 |
| - ], |
| 3 | + content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"], |
7 | 4 | theme: {
|
8 | 5 | extend: {
|
| 6 | + screens: { |
| 7 | + xs: "450px", |
| 8 | + }, |
9 | 9 | boxShadow: {
|
10 |
| - "inner-md": "inset 1px 4px 6px 0 rgb(0 0 0 / 0.1)", |
11 |
| - "inner-md-2": "inset 2px 2px 6px 0 rgb(0 0 0 / 0.15)", |
12 |
| - "inner-md-3": "inset 2px 4px 6px 0 rgb(0 0 0 / 0.21)", |
13 |
| - "inner-md-4": "inset 2px 4px 10px 0 rgb(0 0 0 / 0.28)", |
14 |
| - "inner-lg": "inset 4px 5px 7px 0 rgb(0 0 0 / 0.2)", |
15 |
| - "inner-xl": "inset 4px 9px 9px 0 rgb(0 0 0 / 0.3)", |
16 |
| - "inner-2xl": "inset 4px 11px 12px 0 rgb(0 0 0 / 0.3)", |
17 |
| - }, |
| 10 | + "inner-md": "inset 1px 4px 6px 0 rgb(0 0 0 / 0.1)", |
| 11 | + "inner-md-2": "inset 2px 2px 6px 0 rgb(0 0 0 / 0.15)", |
| 12 | + "inner-md-3": "inset 2px 4px 6px 0 rgb(0 0 0 / 0.21)", |
| 13 | + "inner-md-4": "inset 2px 4px 10px 0 rgb(0 0 0 / 0.28)", |
| 14 | + "inner-lg": "inset 4px 5px 7px 0 rgb(0 0 0 / 0.2)", |
| 15 | + "inner-xl": "inset 4px 9px 9px 0 rgb(0 0 0 / 0.3)", |
| 16 | + "inner-2xl": "inset 4px 11px 12px 0 rgb(0 0 0 / 0.3)", |
| 17 | + }, |
18 | 18 | fontFamily: {
|
19 |
| - opensans: ["\"Open Sans\"", "sans-serif"], |
20 |
| - inter: ["\"Inter\"", "sans-serif"], |
21 |
| - mono: ["\"Roboto Mono\"", "monospace"], |
22 |
| - raleway: ["\"Raleway\"", "sans-serif"], |
23 |
| - roboto: ["\"Roboto\""], |
24 |
| - }, |
| 19 | + opensans: ['"Open Sans"', "sans-serif"], |
| 20 | + inter: ['"Inter"', "sans-serif"], |
| 21 | + mono: ['"Roboto Mono"', "monospace"], |
| 22 | + raleway: ['"Raleway"', "sans-serif"], |
| 23 | + roboto: ['"Roboto"'], |
| 24 | + }, |
25 | 25 | },
|
26 | 26 | },
|
27 | 27 | plugins: [],
|
28 |
| -} |
| 28 | +}; |
0 commit comments