Cataloguer/assets/css/components/table.scss

35 lines
474 B
SCSS

/* TODO: Not currently used */
@media screen and (max-width: 480px) {
.table-scroller {
overflow-x: auto;
width: 320px;
}
}
table {
margin: auto;
inline-size: 80%;
display: table;
& thead {
border: 2px solid $dark;
}
& td {
padding: 0.5em 1em;
border: 1px solid $dark;
&:nth-of-type(1),
&:nth-last-of-type(1) {
white-space: nowrap;
}
}
}
td[colspan] {
text-align: center;
& h3 {
font-weight: bold;
}
}