From ef51633b2caaaabd991c1db572ebb3c500268504 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 25 Mar 2024 07:53:29 -0700 Subject: [PATCH] Fix: allow scroll long upload files alerts list (#6184) --- .../upload-file-widget/upload-file-widget.component.html | 2 +- .../upload-file-widget/upload-file-widget.component.scss | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html b/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html index 1d2471bcc..60ee4eda9 100644 --- a/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html +++ b/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -6,7 +6,7 @@ @if (getStatus().length > 0) { -
+
diff --git a/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.scss b/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.scss index f0e80c1f4..7a050ab43 100644 --- a/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.scss +++ b/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.scss @@ -39,3 +39,7 @@ form { .consumer-status-card { background-color: rgba(var(--bs-body-bg-rgb), .95) !important; } + +.max-vh100-40 { + max-height: calc(100vh - 40px); +}