Skip to content

Commit

Permalink
Fix Preview Window width
Browse files Browse the repository at this point in the history
We were recently fixing the transition of the width animation,
but wasn't using the correct variable for the large viewport.

(cherry picked from commit c423ef0)
  • Loading branch information
tvdeyen committed May 22, 2024
1 parent b8e67e8 commit bc33755
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/assets/stylesheets/alchemy/preview_window.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

@media screen and (min-width: $large-screen-break-point) {
width: calc(
100vw - #{$collapsed-main-menu-width - $default-border-width} - #{$elements-window-min-width}
100vw - #{$collapsed-main-menu-width - $default-border-width} - #{$elements-window-width}
);
}
}
Expand Down

0 comments on commit bc33755

Please sign in to comment.