From ff70696111d860323eef7dd947b0a8b0c5100712 Mon Sep 17 00:00:00 2001 From: kolaente Date: Wed, 6 May 2020 21:41:42 +0200 Subject: [PATCH] Fix task modal with when attachments are present --- src/styles/components/modal.scss | 4 ++-- src/styles/components/task.scss | 9 +++++++++ 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/src/styles/components/modal.scss b/src/styles/components/modal.scss index 59c92255a..a9cd3f795 100644 --- a/src/styles/components/modal.scss +++ b/src/styles/components/modal.scss @@ -18,11 +18,11 @@ overflow: auto; .scrolling-content { - max-width: 800px; + max-width: 1024px; width: 100%; margin: 4rem auto; - @media screen and (max-width: 800px) { + @media screen and (max-width: 1024px) { margin: 0; .close { diff --git a/src/styles/components/task.scss b/src/styles/components/task.scss index 2a5eaac45..cfb0ca0c9 100644 --- a/src/styles/components/task.scss +++ b/src/styles/components/task.scss @@ -53,6 +53,15 @@ } } + table { + table-layout: fixed; + + td { + overflow: hidden; + word-break: break-all; + } + } + .details { padding-bottom: 0.75em; flex-flow: row wrap;