Skip to content

Commit d48a67e

Browse files
committed
Fix overflow in headings
1 parent d77015a commit d48a67e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

client/src/components/Common/Heading.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,9 @@ const element = computed(() => {
9797
@import "scss/theme/blue.scss";
9898
9999
.heading {
100-
word-break: break-all;
100+
overflow-wrap: break-word;
101+
white-space: normal;
102+
word-break: break-word;
101103
}
102104
103105
// prettier-ignore

0 commit comments

Comments
 (0)