ui: Table element's have vertical scrollbars (#8296)

Close #8294. Set overflow to hidden for both x and y axis. This prevents the overflow-y defaulting to auto, and creating scrollbars. Given the text overflow is set to ellipsis, this doesn't change the UI functionality.
This commit is contained in:
duncanKr 2020-07-21 14:41:11 +01:00 committed by hashicorp-ci
parent 096c671cc4
commit d00b0a1fa2

View File

@ -30,7 +30,7 @@
display: none;
}
%table td:not(.actions) > *:only-child {
overflow-x: hidden;
overflow: hidden;
}
%table td:not(.actions) > * {
white-space: nowrap;