Skip to content

Commit 91e851f

Browse files
committed
feat(Columns): Truncate long titles using ellipses
re #63
1 parent a2349de commit 91e851f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/components/columns/Columns.scss

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,11 @@
4747
padding: 0 (map-get($gutterwidths, medium) / 2) map-get($gutterwidths, medium);
4848
overflow-x: hidden;
4949

50-
h1, h2, h3, h4, h5, h6 {white-space: nowrap;}
50+
h1, h2, h3, h4, h5, h6 {
51+
white-space: nowrap;
52+
overflow: hidden;
53+
text-overflow: ellipsis;
54+
}
5155
}
5256
}
5357

0 commit comments

Comments
 (0)