Make table cell single lined and limit the max width [SCI-7996]

This commit is contained in:
sboursen-scinote 2023-03-03 15:59:29 +01:00
parent 88610d6b38
commit 9e33fae006

View file

@ -18,6 +18,15 @@
flex-direction: column;
height: 100%;
width: 100%;
tbody {
td:not(:first-child) {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 30rem;
}
}
}
.toolbar {