From 58a420f2b3935bffe950497672f60c19f86bd2ed Mon Sep 17 00:00:00 2001 From: taehoon Date: Thu, 28 Mar 2019 16:19:27 -0400 Subject: [PATCH] fix panel title overflow issue in mobile --- .../user_reporting_modal/user_reporting_modal.vue | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/components/user_reporting_modal/user_reporting_modal.vue b/src/components/user_reporting_modal/user_reporting_modal.vue index 41c01919a..d5f3b4389 100644 --- a/src/components/user_reporting_modal/user_reporting_modal.vue +++ b/src/components/user_reporting_modal/user_reporting_modal.vue @@ -52,7 +52,14 @@ max-height: 80vh; .panel-heading { - text-align: center; + .title { + text-align: center; + // TODO: Consider making these as default of panel + flex: 1; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } } .panel-body {