Files
koodo-reader/src/components/imageViewer/imageViewer.css
troyeguo 063b6f92f9 fix bug
Former-commit-id: 4a9c109a0ab402699728fd704270a546edf5e015
2021-04-17 21:43:25 +08:00

38 lines
564 B
CSS

.image-preview {
width: 100vw;
height: 100vh;
position: absolute;
top: 0px;
left: 0px;
overflow: 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;
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: fixed;
top: 0px;
left: 0px;
}