mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 17:15:48 +00:00
Merge pull request #846 from Stremio/fix/intro-responsive-layout
Some checks are pending
Build / build (push) Waiting to run
Some checks are pending
Build / build (push) Waiting to run
Intro: Improve layout responsiveness on smaller screens
This commit is contained in:
commit
02bf0cfc6c
1 changed files with 16 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue