Skip to content

Commit 2e4605e

Browse files
committed
Fix: ensure card titles wrap text properly in issue finder page
- Added CSS rule to `.card-title` to apply `word-wrap: break-word` for better text wrapping. - This prevents long text from overflowing, ensuring it stays within the container.
1 parent 992a862 commit 2e4605e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

webpack/sass/project-ideas.scss

+4
Original file line numberDiff line numberDiff line change
@@ -92,3 +92,7 @@
9292
}
9393
}
9494
}
95+
96+
.card-title {
97+
word-wrap: break-word;
98+
}

0 commit comments

Comments
 (0)