Skip to content

Commit

Permalink
Fix Vector 2022 width breakpoint change
Browse files Browse the repository at this point in the history
  • Loading branch information
diskdance committed Jun 27, 2024
1 parent ca19996 commit b5c7986
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gadgets/variant-ally-dialog/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ watch(isOpen, (newValue) => {
.vector-toc-available.vector-feature-toc-pinned-clientpref-1 &,
.vector-feature-main-menu-pinned-enabled & {
@media screen and (min-width: 1000px) and (max-width: 1200px) {
@media screen and (min-width: 1120px) and (max-width: 1680px) {
left: unset;
// Calculated from Vector 2022 source code
Expand All @@ -87,7 +87,7 @@ watch(isOpen, (newValue) => {
}
}
@media screen and (min-width: 1200px) {
@media screen and (min-width: 1680px) {
@vector-2022-left-padding: 3.25em;
left: unset;
margin-left: -(@vector-2022-left-padding / 3 * 2);
Expand Down

0 comments on commit b5c7986

Please sign in to comment.