remove milligram

This commit is contained in:
Julien Calixte
2023-07-30 15:59:38 +02:00
parent 4c24c176f1
commit 07e65adff6
4 changed files with 31 additions and 21 deletions

View File

@@ -93,3 +93,34 @@ input[type='submit'].button-clear {
border-color: transparent;
color: var(--primary-color);
}
table {
border-spacing: 0;
display: block;
overflow-x: auto;
text-align: left;
width: 100%;
}
td,
th {
border-bottom: 0.1rem solid #e1e1e1;
padding: 1.2rem 1.5rem;
}
td:first-child,
th:first-child {
padding-left: 0;
}
td:last-child,
th:last-child {
padding-right: 0;
}
@media (min-width: 40rem) {
table {
display: table;
overflow-x: initial;
}
}