Restrict media to the size of its container.
Some checks failed
format Build format has succeeded
clippy Build clippy has failed
rust-test Build rust-test has succeeded

This commit is contained in:
Tom Alexander 2025-02-17 19:52:32 -05:00
parent 69729bd329
commit db21bd8a55
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE

View File

@ -270,4 +270,11 @@ body {
b {
font-weight: 700;
}
/* Never have media larger than its container */
img,
picture,
video {
max-width: 100%;
}
}