Make acrostic puzzle scroll horizontally

This commit is contained in:
Charlotte Van Petegem 2025-05-24 12:19:59 +02:00
parent f7101c521d
commit ebd6b08064
Signed by: chvp
SSH key fingerprint: SHA256:s9rb8jBVfdahqWHuBAcHCBP1wmj4eYQXZfqgz4H3E9E

View file

@ -131,6 +131,10 @@ input[type=submit] {
padding: 0.5rem; padding: 0.5rem;
} }
.acrostic-puzzle {
overflow-x: scroll;
}
.acrostic-row { .acrostic-row {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
@ -139,7 +143,9 @@ input[type=submit] {
.acrostic-offset,.acrostic-number { .acrostic-offset,.acrostic-number {
display: inline-block; display: inline-block;
width: 2rem; width: 2rem;
min-width: 2rem;
height: 2rem; height: 2rem;
min-height: 2rem;
border: 2px solid transparent; border: 2px solid transparent;
} }