fix/frontend: center first back items on mobile
Some checks failed
pipeline / lint-and-format (push) Failing after 4m34s
pipeline / build-and-push-images (push) Has been skipped

This commit is contained in:
2026-05-01 00:18:54 +02:00
parent 8263dc1c93
commit 50c0646a93

View File

@@ -107,4 +107,15 @@ defineProps<{
opacity: 0.8;
white-space: nowrap;
}
@media only screen and (max-width: 650px) {
.item-row {
align-items: center;
max-width: 100%;
margin: 0 20px;
}
.first-back-content {
justify-content: center;
}
}
</style>