Skip to content

Commit

Permalink
Les menus de notification & utilisateur étaient trop haut sur tablette (
Browse files Browse the repository at this point in the history
#5943)

Correction de l'affichage des menus de notification et des liens utilisateur sur
tablette : ils étaient étendus jusqu'en bas de la page (comme sur mobile) alors
qu'ils sont conçus pour être a peu près comme sur un écran large, ce qui faisait
un rendu étrange.

Co-authored-by: Situphen <[email protected]>
  • Loading branch information
AmauryCarrade and Situphen authored Oct 6, 2020
1 parent f6c2fe7 commit b453053
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions assets/scss/layout/_header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,15 @@ $logo-width: 240px;
.dropdown {
overflow: hidden;

@include mobile {
top: 50px;
height: calc(100vh - 50px);

@at-root body.has-top-banner .logbox .dropdown {
height: calc(100vh - 75px);
}
}

.dropdown-title {
display: block;
margin: 0;
Expand Down Expand Up @@ -469,15 +478,6 @@ $logo-width: 240px;
width: 50px;
}

.dropdown {
top: 50px;
height: calc(100vh - 50px);

@at-root body.has-top-banner .logbox .dropdown {
height: calc(100vh - 75px);
}
}

.dropdown.my-account-dropdown .dropdown-list {
bottom: 0;

Expand Down

0 comments on commit b453053

Please sign in to comment.