salix/front/core/directives/zoom-image.scss

30 lines
546 B
SCSS
Raw Normal View History

2018-03-01 18:35:32 +00:00
.vn-zoom-image {
width: 100%;
height: 100%;
position: fixed;
top: 0;
2019-02-01 12:01:09 +00:00
z-index: 25;
background-color: rgba(1, 1, 1, .6);
2018-03-01 18:35:32 +00:00
& > div {
display: flex;
justify-content: center;
align-items: center;
width: inherit;
height: inherit;
box-sizing: border-box;
2020-04-02 12:20:57 +00:00
padding: 16px;
2018-03-01 18:35:32 +00:00
& > img {
cursor: zoom-out;
max-height: 100%;
max-width: 100%;
2020-04-02 12:20:57 +00:00
border-radius: 3px;
2018-03-01 18:35:32 +00:00
}
}
}
img[zoom-image]{
cursor: zoom-in;
}