[CSS] Fixed position: sticky which rendered mobile users unable to view main page features section.

This commit is contained in:
Eliseu Amaro 2021-08-18 20:10:09 +01:00 committed by Diogo Peralta Cordeiro
parent ff0370af35
commit 6e8c9c49c9
Signed by: diogo
GPG Key ID: 18D2D35001FBFAB0
1 changed files with 7 additions and 4 deletions

View File

@ -111,13 +111,16 @@ header * {
height: 3rem !important; height: 3rem !important;
width: 3rem !important; width: 3rem !important;
} }
@media screen and (max-height: 1090px) {
.content, .content,
.ribbon-wrapper, .ribbon-wrapper,
.content-team { .content-team {
padding: 2rem !important; position: relative !important;
} }
} }
}
/* /*
* -- BODY -- * -- BODY --
*/ */