Issue #1838 - Part 7: Update tests

This commit is contained in:
FranklinDM 2022-04-02 20:23:26 +08:00 committed by roytam1
commit 870fee82e6
15 changed files with 644 additions and 38 deletions

View file

@ -83,15 +83,18 @@ fill,fit {
.zero-progress {
grid-row-gap: calc(10px - 1%);
grid-template-rows: [a] 10px repeat(3, [b] 0 [c]) [d];
grid-template-rows: [a] 10px repeat(3, [b] calc(4px / 10) [c]) [d];
height:40px;
}
.w50.zero-progress {
grid-row-gap: calc(10px - 1%);
grid-template-rows: [a] 10px repeat(3, [b] 0 [c]) [d];
height:50px;
}
.mw50.zero-progress {
grid-row-gap: calc(10px - 1%);
grid-template-rows: [a] 10px repeat(4, [b] 0 [c]) [d];
grid-template-rows: [a] 10px repeat(4, [b] calc(5px / 10) [c]) [d];
height:50px;
}
</style>
</head>