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 fc692cb commit 362381fCopy full SHA for 362381f
3 files changed
apps/web/src/styles/globals.css
@@ -25,3 +25,17 @@
25
width: 200%;
26
height: 200%;
27
}
28
+
29
+@layer utilities {
30
+ @supports not (overflow-wrap: anywhere) {
31
+ .break-anywhere {
32
+ word-break: break-word;
33
+ }
34
35
36
+ @supports (overflow-wrap: anywhere) {
37
38
+ overflow-wrap: anywhere;
39
40
41
+}
apps/web/src/views/card/components/Comment.tsx
@@ -138,7 +138,7 @@ const Comment = ({
138
<ContentEditable
139
html={comment ?? ""}
140
disabled={true}
141
- className="mt-2 text-sm"
+ className="break-anywhere mt-2 text-sm"
142
/>
143
) : (
144
<form onSubmit={handleSubmit(onSubmit)}>
apps/web/tailwind.config.ts
@@ -16,4 +16,4 @@ export default {
16
},
17
18
19
-} satisfies Config;
+} satisfies Config;
0 commit comments