purchases can now refer to multiple editions
All checks were successful
Django CI/CD / test (push) Successful in 1m3s
Django CI/CD / build-and-push (push) Successful in 2m36s

allows purchases to be for more than one game
This commit is contained in:
2025-01-08 21:00:19 +01:00
parent cd90d60475
commit c2853a3ecc
16 changed files with 308 additions and 84 deletions

View File

@ -1443,6 +1443,10 @@ input:checked + .toggle-bg {
margin-top: 1rem;
}
.ml-4 {
margin-left: 1rem;
}
.block {
display: block;
}
@ -1471,6 +1475,10 @@ input:checked + .toggle-bg {
display: grid;
}
.list-item {
display: list-item;
}
.hidden {
display: none;
}
@ -1652,6 +1660,14 @@ input:checked + .toggle-bg {
resize: both;
}
.list-inside {
list-style-position: inside;
}
.list-disc {
list-style-type: disc;
}
.grid-cols-4 {
grid-template-columns: repeat(4, minmax(0, 1fr));
}