mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-22 23:20:58 -05:00
parent
8d65e1ee11
commit
144a63a5c8
1 changed files with 13 additions and 11 deletions
|
@ -4,24 +4,26 @@ import { Children } from "../../../../types/Preact";
|
||||||
|
|
||||||
const Grid = styled.div`
|
const Grid = styled.div`
|
||||||
display: grid;
|
display: grid;
|
||||||
overflow: hidden;
|
|
||||||
|
|
||||||
max-width: min(var(--attachment-max-width), 100%, var(--width));
|
|
||||||
max-height: min(var(--attachment-max-height), var(--height));
|
|
||||||
aspect-ratio: var(--aspect-ratio);
|
aspect-ratio: var(--aspect-ratio);
|
||||||
|
|
||||||
img,
|
max-width: min(100%, var(--width), var(--attachment-max-width));
|
||||||
video {
|
max-height: min(var(--height), var(--attachment-max-height));
|
||||||
min-width: 100%;
|
|
||||||
min-height: 100%;
|
|
||||||
|
|
||||||
width: auto;
|
img, video {
|
||||||
height: auto;
|
grid-area: 1 / 1;
|
||||||
|
|
||||||
|
display: block;
|
||||||
|
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
max-height: 100%;
|
max-height: 100%;
|
||||||
|
|
||||||
grid-area: 1 / 1;
|
object-fit: contain;
|
||||||
|
}
|
||||||
|
|
||||||
|
video {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.spoiler {
|
&.spoiler {
|
||||||
|
@ -56,7 +58,7 @@ export function SizedGrid(props: Props) {
|
||||||
...style,
|
...style,
|
||||||
"--width": `${width}px`,
|
"--width": `${width}px`,
|
||||||
"--height": `${height}px`,
|
"--height": `${height}px`,
|
||||||
"--aspect-ratio": width / height,
|
"--aspect-ratio": `${width} / ${height}`,
|
||||||
}}>
|
}}>
|
||||||
{children}
|
{children}
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|
Loading…
Reference in a new issue