Fix #611 -- Fix overflow in payment information (#656)

Small style change that fixes long word overflow in .panel-body elements
in admin interface.
This commit is contained in:
Ben Hagan
2017-10-30 06:02:35 -05:00
committed by Raphael Michel
parent 96b57994d9
commit 5376ce4bdb

View File

@@ -396,6 +396,11 @@ body.loading #wrapper {
background-color: #eeeeee;
}
.panel-body {
overflow-wrap: break-word;
word-wrap: break-word;
}
.fa.disabled {
color: $text-muted;
}