From b11055534924ac134a62b111657f05b2afd249ad Mon Sep 17 00:00:00 2001 From: Elizabeth Danzberger Date: Wed, 27 Mar 2024 16:08:14 -0400 Subject: [PATCH 1/2] fix: workspace tables expand correctly Signed-off-by: Elizabeth Danzberger --- src/views/RichWorkspace.vue | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/src/views/RichWorkspace.vue b/src/views/RichWorkspace.vue index db9c216f1a2..216abcab3a3 100644 --- a/src/views/RichWorkspace.vue +++ b/src/views/RichWorkspace.vue @@ -291,6 +291,25 @@ export default { margin: 0; } + #rich-workspace:deep(.table-wrapper .content) { + tr { + th, td { + flex-grow: 1; + } + + th { + div { + width: 100%; + } + + .action-item div { + display: flex; + justify-content: flex-end; + } + } + } + } + #rich-workspace:deep(.editor__content) { margin: 0; } From 3c46e90da8b3bb34b2ab46c93f35bed03563001a Mon Sep 17 00:00:00 2001 From: Elizabeth Danzberger Date: Mon, 1 Apr 2024 13:53:41 -0400 Subject: [PATCH 2/2] fix: style lint Signed-off-by: Elizabeth Danzberger --- src/views/RichWorkspace.vue | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/src/views/RichWorkspace.vue b/src/views/RichWorkspace.vue index 216abcab3a3..96dec13838f 100644 --- a/src/views/RichWorkspace.vue +++ b/src/views/RichWorkspace.vue @@ -291,24 +291,24 @@ export default { margin: 0; } - #rich-workspace:deep(.table-wrapper .content) { - tr { - th, td { - flex-grow: 1; - } + #rich-workspace:deep(.table-wrapper .content) { + tr { + th, td { + flex-grow: 1; + } - th { - div { - width: 100%; - } + th { + div { + width: 100%; + } - .action-item div { - display: flex; - justify-content: flex-end; - } - } - } - } + .action-item div { + display: flex; + justify-content: flex-end; + } + } + } + } #rich-workspace:deep(.editor__content) { margin: 0;