Fix horizontal wrapper on mobile

This commit is contained in:
2025-10-27 22:04:15 -07:00
parent cadb155fd7
commit bb11d9e559

View File

@@ -4,6 +4,7 @@
display: flex;
flex-direction: row;
gap: 8px;
align-items: flex-start;
}
.primary-action {
@@ -22,3 +23,9 @@
text-decoration-line: unset;
border-radius: 4px;
}
@media screen and (max-width: 768px) {
.horizontal-wrapper {
flex-direction: column;
}
}