diff options
| author | taehoon <th.dev91@gmail.com> | 2019-03-28 16:19:27 -0400 |
|---|---|---|
| committer | taehoon <th.dev91@gmail.com> | 2019-05-03 11:40:06 -0400 |
| commit | 58a420f2b3935bffe950497672f60c19f86bd2ed (patch) | |
| tree | a5d8aec528f8010e5992a0c07f18f0b95343ea90 /src/components/user_reporting_modal | |
| parent | 0bb82478229b19adae998b9a32b05bcaa4ed0a4f (diff) | |
fix panel title overflow issue in mobile
Diffstat (limited to 'src/components/user_reporting_modal')
| -rw-r--r-- | src/components/user_reporting_modal/user_reporting_modal.vue | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/components/user_reporting_modal/user_reporting_modal.vue b/src/components/user_reporting_modal/user_reporting_modal.vue index 41c01919..d5f3b438 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 { |
