table formatting

This commit is contained in:
Proddy
2022-05-01 16:02:48 +02:00
parent c1a71afd77
commit da2c81818e

View File

@@ -124,20 +124,28 @@ const DashboardStatus: FC = () => {
border-top: 1px solid transparent; border-top: 1px solid transparent;
border-right: 1px solid transparent; border-right: 1px solid transparent;
border-bottom: 1px solid transparent; border-bottom: 1px solid transparent;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
&:nth-of-type(1) { &:nth-of-type(1) {
padding-left: 8px;
flex: 1; flex: 1;
} }
&:nth-of-type(2) { &:nth-of-type(2) {
min-width: 15%;
width: 15%;
text-align: right; text-align: right;
min-width: 64px;
} }
&:nth-of-type(3) { &:nth-of-type(3) {
min-width: 15%;
width: 15%;
text-align: right; text-align: right;
min-width: 64px;
} }
&:last-of-type { &:last-of-type {
min-width: 15%;
width: 15%;
text-align: right; text-align: right;
min-width: 96px; padding-right: 8px;
} }
` `
}); });