Skip to content

Commit 59ae8a1

Browse files
committed
Add xs screen, reformat tailwind config
1 parent 66c5966 commit 59ae8a1

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

tailwind.config.cjs

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
/** @type {import('tailwindcss').Config} */
22
module.exports = {
3-
content: [
4-
"./index.html",
5-
"./src/**/*.{js,ts,jsx,tsx}",
6-
],
3+
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
74
theme: {
85
extend: {
6+
screens: {
7+
xs: "450px",
8+
},
99
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+
},
1818
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+
},
2525
},
2626
},
2727
plugins: [],
28-
}
28+
};

0 commit comments

Comments
 (0)