Left-align table headers

This lets the layout look less ragged.
This commit is contained in:
Jonas Schäfer
2021-01-27 16:32:57 +01:00
parent 4d0ba8ef9a
commit c3ce7d9f3a

View File

@@ -811,10 +811,14 @@ div.welcome-cards {
table {
border-collapse: collapse;
width: 100%;
}
td, th {
padding: $w-s1;
}
td, th {
padding: $w-s1;
}
th {
text-align: left;
}
div.elevated {