Skip to content

Commit

Permalink
Fixed table formtting in the shell. (#459)
Browse files Browse the repository at this point in the history
Tables no longer overflow message bubble.
  • Loading branch information
robgruen authored Dec 4, 2024
1 parent b136659 commit 7d4ae15
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion android/samples/mobile/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
agp = "8.7.2"
agp = "8.7.3"
kotlin = "1.9.0"
coreKtx = "1.15.0"
junit = "4.13.2"
Expand Down
7 changes: 7 additions & 0 deletions ts/packages/shell/src/renderer/assets/styles.less
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,13 @@ body {
white-space: break-spaces;
}

table.table-message {
table-layout: fixed;
text-overflow: ellipsis;
text-wrap: pretty;
width: 100%;
}

table.table-message th,
table.table-message td {
border: solid 1px black;
Expand Down

0 comments on commit 7d4ae15

Please sign in to comment.