26 lines
396 B
SCSS
26 lines
396 B
SCSS
// TODO: remove once replaced in content with figures
|
|
img,
|
|
video {
|
|
max-inline-size: 100%;
|
|
block-size: auto;
|
|
inline-size: auto;
|
|
max-block-size: 50vh;
|
|
margin: auto;
|
|
display: block;
|
|
}
|
|
|
|
.picture__wrapper {
|
|
position: relative;
|
|
margin: auto;
|
|
block-size: auto;
|
|
width: fit-content;
|
|
max-block-size: 50vh;
|
|
|
|
& .picture {
|
|
display: block;
|
|
|
|
& img {
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|