Fix table headers wrapping in table view
continuous-integration/drone/push Build was killed Details

This commit is contained in:
kolaente 2021-07-22 21:51:34 +02:00
parent 5fd7e3f708
commit 028dbf27ee
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 16 additions and 12 deletions

View File

@ -1,17 +1,21 @@
.table-view { .table-view {
.table { .table {
background: transparent; background: transparent;
overflow-x: auto; overflow-x: auto;
overflow-y: hidden; overflow-y: hidden;
th {
white-space: nowrap;
}
.user { .user {
margin: 0; margin: 0;
} }
.is-done { .is-done {
font-size: .9rem; font-size: .9rem;
margin: 0; margin: 0;
} }
} }
} }