Skip to content

Commit

Permalink
wrapping of item names
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminCharmes committed Sep 13, 2024
1 parent e5620b4 commit 935d9b8
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions webapp/src/components/DynamicDataTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,21 @@ export default {
visibility: visible !important;
}
.p-datatable .p-datatable-tbody > tr > td {
min-width: 1em;
max-width: 200px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.p-datatable .p-datatable-thead > tr > th {
min-width: 1em;
max-width: 200px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.button-right {
gap: 0.5em;
}
Expand Down

0 comments on commit 935d9b8

Please sign in to comment.