Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #2260 from MorayJ/pod-table-scroll
Make pod-tables scroll horizontally on smaller views - second attempt
  • Loading branch information
MorayJ committed Aug 13, 2018
2 parents f538e4a + 3321458 commit 5f1eb21
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions assets/sass/style.scss
Expand Up @@ -74,9 +74,15 @@ svg {
height: auto;
}

table.pod-table {
display: block;
overflow-x: auto;
}

table.pod-table tr:nth-child(odd) {
background-color: rgba(0, 0, 0, 0.031373);
}

table.pod-table tr:nth-child(even) {
background-color: transparent;
}
Expand Down

0 comments on commit 5f1eb21

Please sign in to comment.