Skip to content

Commit

Permalink
fix: table formatter flex direction (#1622)
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickhulce authored and ebidel committed Feb 3, 2017
1 parent ee8d967 commit 3a4a886
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lighthouse-core/formatters/partials/table.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
background-color: #fafafa;
}
.table_list code, .table_list pre {
display: block;
white-space: pre;
font-family: monospace;
}
Expand All @@ -47,7 +46,8 @@
.table_list.multicolumn th,
.table_list.multicolumn td {
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
flex: 1;
}
</style>
Expand Down

0 comments on commit 3a4a886

Please sign in to comment.