style: Keep buttons side-by-side on narrow screens with responsive CSS

This commit is contained in:
Paul Gauthier (aider) 2025-03-19 13:34:28 -07:00
parent d2cfd541ed
commit 16304beeab

View file

@ -511,9 +511,16 @@ footer {
}
.buttons {
flex-direction: column;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: center;
gap: 10px;
}
.btn {
min-width: 120px;
text-align: center;
}
.stats-container {
@ -585,6 +592,15 @@ footer {
font-size: 0.9rem;
}
.buttons {
gap: 8px;
}
.btn {
min-width: 100px;
padding: 8px 12px;
}
nav {
padding: 8px 0;
}