This commit is contained in:
Niko Abeler 2024-05-09 16:52:13 +02:00
parent 3a3655b587
commit d7e5df2a95
1 changed files with 19 additions and 1 deletions

View File

@ -65,6 +65,12 @@ input[type='submit'].secondary:focus {
background-color: rgba(93, 107, 137, 0.25);
}
/* for checkboxes */
label > input {
display: inherit;
width: initial;
}
/* from pico.css */
mark {
padding: 0.125rem 0.25rem;
@ -128,6 +134,18 @@ pre {
white-space: pre-wrap;
}
table {
width: 100%;
}
th {
border-bottom: solid #888 1px;
}
tr:nth-child(2n) {
background: #f0f0f1;
}
.header {
display: flex;
flex-flow: row;
@ -266,4 +284,4 @@ nav.row {
height: 100%;
aspect-ratio: 1 / 1;
object-fit: cover;
}
}