Fixes issue #29

This commit is contained in:
CasVT
2023-01-24 16:24:07 +01:00
parent 252272b8ad
commit 18cd2c2ead
5 changed files with 97 additions and 2 deletions

View File

@@ -112,6 +112,26 @@ div.options > button {
color: var(--color-error);
}
#test-reminder {
display: flex;
gap: 1rem;
overflow-x: hidden;
}
#test-reminder > div {
width: 100%;
flex: 0 0 auto;
font-size: inherit;
transition: transform .1s linear;
}
#test-reminder.show-sent > div {
transform: translateX(calc(-100% - 1rem));
}
@media (max-width: 460px) {
.sub-inputs > input,
.sub-inputs > select {