1{{/* Display TDs below each other on small devices */}}2@media (max-width: 60em) {3 table td {4 display: table;5 padding: 0px !important; {{/* overwrite td.description */}}6 }78 table tr {9 display: block;10 margin: 10px 0px 10px 0px;11 }12}1314table {15 text-align: left;16 max-width: 60em;17 width: 100%;18}1920table td.description {21 padding: 0.15em 0.5em;22}2324table.commits td.date {25 font-style: italic;26 color: var(--color-grey);27}2829table.commits td.author {30 color: var(--color-grey);31}