Center align the footer file number & size summary

Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
This commit is contained in:
Jan-Christoph Borchardt 2018-10-03 13:19:08 +02:00
parent 32d6090c8b
commit 2a42a8da3e
No known key found for this signature in database
GPG Key ID: CBD846FC845CBE17
1 changed files with 23 additions and 0 deletions

View File

@ -842,4 +842,27 @@ table.dragshadow td.size {
text-overflow: ellipsis;
}
}
/* Center align the footer file number & size summary */
tfoot {
display: grid;
.summary {
display: inline-block;
margin: 0 auto;
td {
padding-top: 50px;
&:first-child,
&.date {
display: none;
}
.info {
margin-left: 0;
}
}
}
}
}