test
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2024-02-01 17:27:43 +01:00
parent dcc1336d62
commit b941819b73
2 changed files with 20 additions and 15 deletions

View File

@ -140,12 +140,28 @@ tr:hover:not(.selected) {
#nutrition-input-table {
width: 100%; /* Tabelle nimmt die volle Breite ein */
border-collapse: separate; /* Entfernt doppelte Ränder */
border-radius: 10px;
overflow: hidden;
width: 100%;
border-collapse: separate; /* Erlaubt die Anwendung von border-radius */
border-spacing: 0; /* Entfernt den Abstand zwischen den Zellen */
}
#nutrition-input-table th:first-child {
border-top-left-radius: 10px;
}
#nutrition-input-table th:last-child {
border-top-right-radius: 10px;
}
#nutrition-input-table tr:last-child td:first-child {
border-bottom-left-radius: 10px;
}
#nutrition-input-table tr:last-child td:last-child {
border-bottom-right-radius: 10px;
}
#nutrition-input-table th, #nutrition-input-table td {
border: 1px solid #ddd; /* Fügt Ränder hinzu */
padding: 8px; /* Fügt Innenabstand hinzu */