1
0
mirror of https://github.com/bigchaindb/site.git synced 2024-11-22 01:36:55 +01:00

reset body word-break on tables, fixes #49

This commit is contained in:
Matthias Kretschmann 2016-02-11 02:11:25 +01:00
parent 394c70d5c6
commit 031964817e

View File

@ -8,6 +8,10 @@
margin-top: $spacer;
margin-bottom: $spacer;
// reset body word-break
// so responsive tables can work
word-break: normal;
th,
td {
padding: $table-cell-padding;
@ -78,5 +82,7 @@
.table-responsive {
display: block;
width: 100%;
min-height: .01%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}