feat: move /first_install to vue component (#3485)

This commit is contained in:
dni ⚡
2025-11-10 11:17:29 +01:00
committed by GitHub
parent 8755984bd8
commit f8c58aef0e
13 changed files with 205 additions and 166 deletions
+36
View File
@@ -341,3 +341,39 @@ video {
.q-dialog__inner--minimized {
padding: 12px;
}
.first-install {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
}
.first-install .grid {
display: block;
}
.first-install .hero-wrapper {
display: none;
}
.first-install .hero {
display: block;
height: 100%;
max-width: 250px;
background-image: url(/static/images/logos/lnbits.svg);
background-position: center;
background-size: contain;
background-repeat: no-repeat;
}
@media (min-width: 992px) {
.first-install .grid {
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 1rem;
}
.first-install .hero-wrapper {
display: block;
position: relative;
height: 100%;
padding: 1rem;
}
}