diff --git a/src/client/components/Dashboard/Dashboard.scss b/src/client/components/Dashboard/Dashboard.scss index f9ef483280..a0d770788e 100644 --- a/src/client/components/Dashboard/Dashboard.scss +++ b/src/client/components/Dashboard/Dashboard.scss @@ -5,9 +5,10 @@ grid-column-gap: $spacing-xs; grid-row-gap: $spacing-xs; grid-template-columns: 1fr; + overflow: hidden; @include min-width($laptop) { - grid-template-columns: repeat(2, 1fr); + grid-template-columns: repeat(2, minmax(0, 1fr)); padding-top: $spacing-s; } } @@ -16,6 +17,7 @@ align-content: start; align-items: start; display: grid; + overflow: hidden; .header { border-radius: 2px; @@ -33,6 +35,18 @@ > :nth-child(2) { padding: 0 $spacing-xs; + overflow: hidden; + } + + table { + table-layout: fixed; + } + + td, + th { + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } @include min-width($laptop) {