Skip to content

Commit 5d28e29

Browse files
authored
fix: overridden css classes across the website (graphql#1505)
1 parent 952afe1 commit 5d28e29

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

src/assets/css/global.css

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,22 @@
1-
@tailwind base;
1+
/*@tailwind base;*/
2+
/* WARNING: Don't uncomment this, as it will result in all styles to be overriden and broken */
3+
/* @tailwind base; */
24
@tailwind components;
35
@tailwind utilities;
46

57
.override-prose-w-with-85ch {
68
max-width: 83ch;
79
}
10+
11+
/* The below classes have been added to substitute the missing classes from `base` that breaks the styling */
12+
.translate-x-0 {
13+
transform: translateX(0);
14+
}
15+
16+
.transform-none {
17+
transform: none;
18+
}
19+
20+
.translate-x-full {
21+
transform: translateX(100%);
22+
}

0 commit comments

Comments
 (0)