Files
koodo-reader/src/components/imageViewer/imageViewer.css
troyeguo d8c3e33b8a fix bug
Former-commit-id: 7fa431710fe0e9142a93abc504b5f41e98787a10
2020-09-29 23:42:35 +08:00

39 lines
585 B
CSS

.image-preview {
width: 100vw;
height: 100vh;
position: absolute;
top: 0px;
left: 0px;
overflow-y: scroll;
display: flex;
justify-content: center;
align-items: center;
z-index: 50;
}
.image {
z-index: 5;
}
.image-operation {
position: absolute;
left: calc(50% - 172px);
bottom: 30px;
color: white;
font-size: 30px;
z-index: 6;
}
.zoom-in-icon,
.zoom-out-icon,
.save-icon,
.clockwise-icon,
.counterclockwise-icon {
margin: 20px;
cursor: pointer;
}
.image-background {
width: 100%;
height: 100%;
position: absolute;
top: 0px;
left: 0px;
}