Skip to content

Commit

Permalink
Merge pull request #291 from IGNF/fix/position-widget-menu-button
Browse files Browse the repository at this point in the history
fix(position:css): gestion en position absolue du bouton "menu widget"
  • Loading branch information
elias75015 authored Aug 5, 2024
2 parents 0d7f4c0 + 07f5e1a commit 30482ab
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/components/menu/MenuLateralWrapper.vue
Original file line number Diff line number Diff line change
Expand Up @@ -134,5 +134,24 @@ left: 10px;
position: absolute;
}
/* FIX ME : le bouton widget n'est pas intégré à la grille des widgets
On gère donc sa position de manière absolue */
@media (max-width: 382px) {
.menu-logo-list {
top : 308px;
}
}
@media (max-width: 576px) and (min-width: 382px){
.menu-logo-list {
top : 286px;
}
}
@media (max-width: 627px) and (min-width: 576px){
.menu-logo-list {
top : 228px;
}
}
</style>

0 comments on commit 30482ab

Please sign in to comment.