Adds a bigger width to the performance bar modal box and breaks the content

This commit is contained in:
Filipa Lacerda 2018-03-20 17:26:30 +00:00
parent a2d82d4c55
commit 7224b8cea6
No known key found for this signature in database
GPG Key ID: 9CA3FDE4D1E2F1C8
3 changed files with 14 additions and 2 deletions

View File

@ -64,6 +64,7 @@ export default {
<td
v-for="key in keys"
:key="key"
class="break-all"
>
{{ item[key] }}
</td>

View File

@ -446,6 +446,11 @@ img.emoji {
opacity: .5;
}
.break-all {
word-wrap: break-word;
word-break: break-all;
}
/** COMMON CLASSES **/
.prepend-top-0 { margin-top: 0; }
.prepend-top-5 { margin-top: 5px; }

View File

@ -108,8 +108,14 @@
}
}
.performance-bar-modal .modal-footer {
display: none;
.performance-bar-modal {
.modal-footer {
display: none;
}
.modal-dialog {
width: 860px;
}
}
}