Skip to content

Commit ec233eb

Browse files
committed
Limit width of table cells to not go over 100% width
1 parent 4afb400 commit ec233eb

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

app/assets/stylesheets/application.scss

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,14 @@ th {
117117
background-color: #f2f2f2;
118118
}
119119

120+
td:nth-child(1), td:nth-child(3) {
121+
max-width: 40vw;
122+
overflow: auto;
123+
}
124+
td:last-child {
125+
width: 120px;
126+
}
127+
120128
/* Banner styles - using styleguide colors where possible */
121129
.banner {
122130
position: fixed;

0 commit comments

Comments
 (0)