Center login view elements on mobile

This commit is contained in:
Johannes Zellner
2025-10-10 17:16:50 +02:00
parent 767bfba670
commit 0871b416a7
2 changed files with 14 additions and 0 deletions
@@ -127,6 +127,7 @@ defineProps({
@media (max-width: 576px) {
.public-page-layout-mobile-logo {
display: block;
text-align: center;
}
.public-page-layout-right {
@@ -139,6 +140,7 @@ defineProps({
padding-right: 20px;
justify-content: start;
flex-basis: unset;
text-align: center;
gap: 20px;
}
@@ -147,4 +149,10 @@ defineProps({
}
}
@media (max-width: 576px) {
.actions {
align-items: unset;
}
}
</style>