30 lines
547 B
SCSS
30 lines
547 B
SCSS
|
img[zoom-image]{
|
||
|
cursor: zoom-in;
|
||
|
}
|
||
|
|
||
|
.vn-zoom-image {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
position: fixed;
|
||
|
top: 0;
|
||
|
z-index: 11;
|
||
|
background-color: rgba(1, 1, 1, 0.6);
|
||
|
|
||
|
& > div {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
width: inherit;
|
||
|
height: inherit;
|
||
|
box-sizing: border-box;
|
||
|
padding: 1em;
|
||
|
|
||
|
& > img {
|
||
|
cursor: zoom-out;
|
||
|
max-height: 100%;
|
||
|
max-width: 100%;
|
||
|
border-radius: .2em;
|
||
|
}
|
||
|
}
|
||
|
}
|