webapp/src/components/_shared/Lightbox/Lightbox.module.scss
Ilya Y 80a9a4c9a5
Update lightbox (#313)
update_lightbox
2023-11-13 19:55:32 +03:00

55 lines
910 B
SCSS

.Lightbox {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgb(0 0 0 / 80%);
display: flex;
align-items: center;
justify-content: center;
z-index: 10000;
.image {
max-width: 90%;
max-height: 80%;
cursor: pointer;
}
.close {
position: fixed;
z-index: 1001;
top: 20px;
right: 40px;
font-size: 30px;
color: white;
cursor: pointer;
width: 20px;
height: 20px;
}
.zoomControls {
display: flex;
position: fixed;
bottom: 16px;
left: 50%;
height: 24px;
gap: 1rem;
transform: translateX(-50%);
z-index: 1001;
.control {
border-radius: 50%;
width: 24px;
height: 24px;
font-size: 20px;
line-height: 1;
display: flex;
align-items: center;
justify-content: center;
border: 2px solid #fff;
color: #fff;
}
}
}