Simplify responsive layouts. Remove button vertical stacking and always fit them on the same row.

This commit is contained in:
2025-12-10 16:11:43 +00:00
parent ca73febe2f
commit 8bb00f01c4
5 changed files with 25 additions and 36 deletions
+3 -8
View File
@@ -55,13 +55,8 @@ onMounted(async () => {
justify-content: flex-start;
}
@media (max-width: 720px) {
.button-row {
flex-direction: column;
}
.button-row button {
width: 100%;
}
.button-row button {
flex: 1;
min-width: 0;
}
</style>