We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 308e5bc commit caa95c2Copy full SHA for caa95c2
apps/website/.eslintrc.json
@@ -12,7 +12,9 @@
12
"sourceType": "module",
13
"ecmaFeatures": {
14
"jsx": true
15
- }
+ },
16
+ "parser": "@typescript-eslint/parser",
17
+ "tsconfigRootDir": "__dirname"
18
},
19
"plugins": ["@typescript-eslint"],
20
"ignorePatterns": ["!**/*"],
apps/website/src/routes/docs.css
@@ -17,3 +17,21 @@
.docs h4 {
@apply text-lg mb-6;
}
+
21
+/* Styles Jack has added / will change */
22
+.docs a {
23
+ @apply border-b-2 border-[#00B9FC] font-bold;
24
+}
25
26
+/* adds sufficient padding to the table items */
27
+.docs td article {
28
+ @apply pt-4 pb-4 mb-0;
29
30
31
+.docs p {
32
+ @apply mb-4;
33
34
35
+.docs td p {
36
+ @apply mb-0;
37
0 commit comments