fix panel title overflow issue in mobile

This commit is contained in:
taehoon 2019-03-28 16:19:27 -04:00
parent 0bb8247822
commit 58a420f2b3
1 changed files with 8 additions and 1 deletions

View File

@ -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 {