Adjust columns widths and padding to fit large numbers

This commit is contained in:
leigh-mil
2019-08-06 11:59:23 -04:00
parent d755d96bae
commit 53943a30c3
2 changed files with 19 additions and 5 deletions

View File

@@ -35,10 +35,24 @@
margin-top: 1rem;
table-layout: fixed;
td {
overflow: hidden;
th {
white-space: nowrap;
text-overflow: ellipsis;
word-wrap: normal;
padding: 0.8rem;
&.task-order__clin-amount {
width: 25%;
}
}
td {
padding: 0.8rem;
&.task-order__loa {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
}
}