From 2e0b74c9ad018ff7938b1960ffb6e03bda0b3b5c Mon Sep 17 00:00:00 2001 From: Ben Haynes Date: Fri, 2 Apr 2021 14:14:12 -0400 Subject: [PATCH] fixes #4450 --- app/src/components/v-card/v-card.vue | 2 +- app/src/components/v-error/v-error.vue | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/app/src/components/v-card/v-card.vue b/app/src/components/v-card/v-card.vue index 94755e863a..a6628ad82c 100644 --- a/app/src/components/v-card/v-card.vue +++ b/app/src/components/v-card/v-card.vue @@ -30,7 +30,7 @@ body { --v-card-max-width: 400px; --v-card-height: auto; --v-card-min-height: none; - --v-card-max-height: min-content; + --v-card-max-height: 90vh; --v-card-padding: 16px; --v-card-background-color: var(--background-subdued); } diff --git a/app/src/components/v-error/v-error.vue b/app/src/components/v-error/v-error.vue index c1f6931eb7..2b0b6a3d9e 100644 --- a/app/src/components/v-error/v-error.vue +++ b/app/src/components/v-error/v-error.vue @@ -56,6 +56,8 @@ export default defineComponent({ font-family: var(--family-monospace); background-color: var(--danger-alt); border-radius: var(--border-radius); + max-height: 50vh; + overflow: auto; .copy-error { margin-left: 12px;