From 3fa0bac36f59571f89103c8c08e6310e43181e63 Mon Sep 17 00:00:00 2001 From: citrusella Date: Sat, 16 Nov 2019 12:10:34 -0500 Subject: [PATCH] hatching modal auto height to accommodate longer strings (#11538) --- .../client/src/components/inventory/stable/hatchingModal.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/website/client/src/components/inventory/stable/hatchingModal.vue b/website/client/src/components/inventory/stable/hatchingModal.vue index e222daa479..22cd452c79 100644 --- a/website/client/src/components/inventory/stable/hatchingModal.vue +++ b/website/client/src/components/inventory/stable/hatchingModal.vue @@ -70,7 +70,8 @@ } .text { - height: 60px; + height: auto; + min-height: 60px; font-size: 14px; line-height: 1.43; text-align: center;