mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 18:44:16 +00:00
32 lines
445 B
Plaintext
32 lines
445 B
Plaintext
.ImageViewer {
|
|
--ignore-dragger: true;
|
|
width: 100%;
|
|
|
|
.image-wrapper {
|
|
width: 100%;
|
|
|
|
img {
|
|
border-radius: 8px;
|
|
--ignore-dragger: true;
|
|
width: 100%;
|
|
max-height: 25vh;
|
|
object-fit: cover;
|
|
border-radius: 5px;
|
|
}
|
|
}
|
|
|
|
&.extended {
|
|
height: 100%;
|
|
display: inline-flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
img {
|
|
max-height: 100vh;
|
|
height: 100%;
|
|
object-fit: fill;
|
|
}
|
|
}
|
|
}
|