Skip to content

Commit 805eba3

Browse files
committed
fix: table getting overflowed and causing UI to break on Chromium browsers on small devices
1 parent ed20101 commit 805eba3

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/templates/guide.module.css

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,12 @@
214214
.videoContainer {
215215
padding-bottom: var(--baseline-box-7x);
216216
}
217+
.table {
218+
& table {
219+
table-layout: fixed;
220+
text-wrap: wrap;
221+
}
222+
}
217223
}
218224

219225
@media (--xsmall) {
@@ -223,4 +229,10 @@
223229
.itemSpacer {
224230
display: none;
225231
}
232+
.table {
233+
& table {
234+
table-layout: fixed;
235+
text-wrap: wrap;
236+
}
237+
}
226238
}

0 commit comments

Comments
 (0)