Skip to content

Commit

Permalink
FIx for on zooming browser the snap view img over flows.
Browse files Browse the repository at this point in the history
  • Loading branch information
s-yadav committed Aug 15, 2024
1 parent 5eabe1a commit 5d1f38b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/iv-viewer/src/scss/_iv-viewer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,14 @@

/***** snap view css *****/
&-snap-view {
width: $iv-snap-view-width;
height: $iv-snap-view-height;
width: calc($iv-snap-view-width + 2px);
height: calc($iv-snap-view-height + 2px);
position: absolute;
top: $iv-boundary-space;
border: 1px solid $iv-snap-view-border-color;
background: $iv-black;
z-index: 100;
box-sizing: content-box;
box-sizing: border-box;
transition: opacity ease 400ms;
opacity: 0;

Expand Down

0 comments on commit 5d1f38b

Please sign in to comment.