diff options
author | Arun Isaac | 2021-06-28 17:13:39 +0530 |
---|---|---|
committer | Arun Isaac | 2021-06-28 17:13:39 +0530 |
commit | 6de843c2d9d790f8fb1ed5aac1a139c335360bbf (patch) | |
tree | ef98666657da1d7cb837106780b84e1e7bf579f5 | |
parent | 04002eefc0e374783f18d0cf8857564fc38ee48a (diff) | |
download | ccwl-6de843c2d9d790f8fb1ed5aac1a139c335360bbf.tar.gz ccwl-6de843c2d9d790f8fb1ed5aac1a139c335360bbf.tar.lz ccwl-6de843c2d9d790f8fb1ed5aac1a139c335360bbf.zip |
website: Constrain images within their containers.
* website/style.css (img): Set max-width to 100%.
-rw-r--r-- | website/style.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/website/style.css b/website/style.css index 3dd4ba3..d99533a 100644 --- a/website/style.css +++ b/website/style.css @@ -23,3 +23,7 @@ code { object { pointer-events: none; } + +img { + max-width: 100%; +} |