Browse Source

Add breakpoint before overwriting table

Get rid of the country column before we completely scrap the table. It's not that important and 1000px is a bit to wide for the block layout.
pm2
Luke Childs 8 years ago
parent
commit
75fee4e418
  1. 12
      assets/style.css

12
assets/style.css

@ -224,7 +224,17 @@ footer {
}
/* Responsive */
@media (max-width: 1000px) {
/* Hide country column on smaller screens */
@media (min-width: 800px) and (max-width: 1000px) {
th:nth-of-type(5),
td:nth-of-type(5) {
display: none;
}
}
/* Completely overwrite table layout for mobile */
@media (max-width: 800px) {
/* Get rid of browser table layout */
table, thead, tbody, th, td, tr {

Loading…
Cancel
Save