Merge pull request #846 from Stremio/fix/intro-responsive-layout
Some checks are pending
Build / build (push) Waiting to run

Intro: Improve layout responsiveness on smaller screens
This commit is contained in:
Timothy Z. 2025-02-25 12:44:14 +02:00 committed by GitHub
commit 02bf0cfc6c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -252,7 +252,7 @@
}
}
@media only screen and (max-width: @minimum) {
@media only screen and (max-width: @xsmall) {
.intro-container {
justify-content: initial;
padding: 3rem 1.5rem;
@ -279,6 +279,21 @@
.content-container {
flex-direction: column-reverse;
.form-container, .options-container {
width: 50%;
margin: 0 auto;
}
.options-container {
margin-bottom: 4rem;
}
}
}
}
@media only screen and (max-width: @minimum) {
.intro-container {
.content-container {
.form-container, .options-container {
width: 100%;
margin: 0;