Fix diff node table layout for Safari

This commit is contained in:
Nick O'Leary 2017-01-04 20:57:10 +00:00
parent ffa628be2d
commit 1f9ae45875
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9
1 changed files with 7 additions and 3 deletions

View File

@ -130,9 +130,13 @@
}
table {
border-collapse: collapse;
width: 100%;
table-layout:fixed;
border-collapse: collapse;
table-layout:fixed;
// Fix for table-layout: fixed on safari:
max-width: none;
width: auto;
min-width: 100%;
}
td, th {
border: 1px solid $secondary-border-color;