21 lines
413 B
SCSS
21 lines
413 B
SCSS
.viewer {
|
|
display: flex;
|
|
overflow: hidden;
|
|
flex-direction: column;
|
|
border-end-end-radius: 4px;
|
|
border-end-start-radius: 4px;
|
|
|
|
max-width: 100vw;
|
|
|
|
img {
|
|
width: auto;
|
|
height: auto;
|
|
max-width: 90vw;
|
|
max-height: 75vh;
|
|
object-fit: contain;
|
|
border-bottom: thin solid var(--tertiary-foreground);
|
|
|
|
-webkit-touch-callout: default;
|
|
}
|
|
}
|