Fix table sizes when empty.

This commit is contained in:
yukirij 2024-08-27 18:43:27 -07:00
parent d9cb670d6e
commit 23a06d72f7

View File

@ -10,7 +10,8 @@ main>table.list tr:nth-child(odd){
background-color:#343434; background-color:#343434;
} }
main>table.list th{ main>table.list th{
padding:0 1rem 0 1rem; width:1px;
padding:0 2rem 0 2rem;
text-align:center; text-align:center;
font-size:1.2rem; font-size:1.2rem;
@ -31,7 +32,7 @@ main>table.list td{
color:#f0f0f0; color:#f0f0f0;
border-right: 1px solid #383838; border-right: 1px solid #383838;
} }
main>table.list td:last-child{ main>table.list td:last-child, main>table.list th:last-child{
display:flex; display:flex;
flex-flow:row nowrap; flex-flow:row nowrap;
align-items:flex-start; align-items:flex-start;