Skip to content

Commit 47f8856

Browse files
More clean up
1 parent 6d1ac58 commit 47f8856

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

packages/cheatsheet-local/tailwind.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const references = JSON.parse(
66

77
/** @type {import('tailwindcss').Config} */
88
export default {
9-
content: [".", ...references].map((pkg) => `${pkg}/src/**/*.{js,ts,jsx,tsx}`),
9+
content: [".", ...references].map((pkg) => `${pkg}/src/**/*.{ts,tsx,html}`),
1010
theme: {
1111
extend: {},
1212
},
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
@import "tailwindcss";
22

33
@config "../tailwind.config.js";
4+
5+
@theme {
6+
--text-2xs: 0.625rem;
7+
}

packages/cursorless-vscode-tutorial-webview/tailwind.config.js

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,9 @@ const references = JSON.parse(
66

77
/** @type {import('tailwindcss').Config} */
88
export default {
9-
content: [".", ...references].map((pkg) => `${pkg}/src/**/*.{js,ts,jsx,tsx}`),
9+
content: [".", ...references].map((pkg) => `${pkg}/src/**/*.{ts,tsx,html}`),
1010
theme: {
11-
extend: {
12-
fontSize: {
13-
["2xs"]: "0.625rem",
14-
},
15-
},
11+
extend: {},
1612
},
1713
plugins: [],
1814
};

0 commit comments

Comments
 (0)