diff --git a/gradle/changelog/table_cell_overflow.yaml b/gradle/changelog/table_cell_overflow.yaml new file mode 100644 index 0000000000..f45e0c0d68 --- /dev/null +++ b/gradle/changelog/table_cell_overflow.yaml @@ -0,0 +1,2 @@ +- type: fixed + description: Long text in table cells breaking layout diff --git a/scm-ui/ui-styles/src/components/_main.scss b/scm-ui/ui-styles/src/components/_main.scss index 3888097653..c1c98fab36 100644 --- a/scm-ui/ui-styles/src/components/_main.scss +++ b/scm-ui/ui-styles/src/components/_main.scss @@ -567,6 +567,9 @@ ul.is-separated { // tables .table { width: 100%; + td { + overflow-wrap: anywhere; + } td, th { border-color: $white-ter;