Skip to content

Commit caa95c2

Browse files
fix(eslint preventing docs styling): fixed eslint preventing tw styling changes
1 parent 308e5bc commit caa95c2

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

apps/website/.eslintrc.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212
"sourceType": "module",
1313
"ecmaFeatures": {
1414
"jsx": true
15-
}
15+
},
16+
"parser": "@typescript-eslint/parser",
17+
"tsconfigRootDir": "__dirname"
1618
},
1719
"plugins": ["@typescript-eslint"],
1820
"ignorePatterns": ["!**/*"],

apps/website/src/routes/docs.css

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,21 @@
1717
.docs h4 {
1818
@apply text-lg mb-6;
1919
}
20+
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

Comments
 (0)