Fix some layout issue in the onboarding views

This commit is contained in:
Johannes Zellner
2025-05-26 17:23:11 +02:00
parent 314e20ea18
commit fd361ef5cb
3 changed files with 12 additions and 5 deletions
+8 -1
View File
@@ -127,14 +127,21 @@ onMounted(async () => {
.container {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
height: 100%;
overflow: auto;
}
h1 {
margin-top: 0;
}
.view {
margin: 60px 0;
width: 100%;
max-width: 500px;
}
</style>
+2 -2
View File
@@ -394,8 +394,8 @@ onMounted(async () => {
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
overflow: auto;
}
@@ -405,9 +405,9 @@ h1 {
}
.view {
margin: 60px 0;
width: 100%;
max-width: 500px;
max-height: 100%;
}
</style>
+2 -2
View File
@@ -232,8 +232,8 @@ onMounted(async () => {
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
overflow: auto;
}
@@ -243,9 +243,9 @@ h1 {
}
.view {
margin: 60px 0;
width: 100%;
max-width: 500px;
max-height: 100%;
}
</style>