Skip to content

Commit

Permalink
feal: Fix admin site page UI gtitch - MEED-3362 - Meeds-io/MIPs#113 (#…
Browse files Browse the repository at this point in the history
…3519)

Before this PR, there is a UI glitch in the admin page due to the breakpoints review.
This change allows to fix the admin page display and adapt its breakpoints with the platform breakpoints.

(cherry picked from commit 60dec5a)
  • Loading branch information
SaraBoutej authored and rdenarie committed Feb 28, 2024
1 parent 6c1458d commit a71a60f
Showing 1 changed file with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@
*/

@media (min-width: 1280px) {
@import "../../variables.less";
@import "../../mixins.less";

@media (min-width: @minDesktop) {
.administrationSiteVerticalMenuContainerClass {
width: 310px !important;
}
Expand All @@ -27,7 +30,7 @@
}
}

@media (max-width: 1279px) {
@media (max-width: @maxLargeTabletWidth) {
.administrationSiteVerticalMenuContainerClass {
width: 0px !important;
}
Expand All @@ -39,7 +42,7 @@
}
}

@media (max-width: 979px) {
@media (max-width: @maxTabletWidth) {
.administrationSiteVerticalMenuContainerClass {
width: 0px !important;
}
Expand All @@ -49,4 +52,4 @@
margin-right: 0px ~'!important; /** orientation=rt */ ';
margin-top: -30px;
}
}
}

0 comments on commit a71a60f

Please sign in to comment.