diff options
| author | Samuel Johnson <[email protected]> | 2025-12-10 21:14:08 -0500 |
|---|---|---|
| committer | Samuel Johnson <[email protected]> | 2025-12-10 21:14:08 -0500 |
| commit | f22d257768f7a257dd47cbebf93871ebd87aeb86 (patch) | |
| tree | bbd794ad04ca53e5b57fdac9ac8f861852e96ce1 | |
| parent | a2be46099561e1c0585fa102a024a2d0692b6570 (diff) | |
Fix image and video scaling
| -rw-r--r-- | static/app.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/static/app.css b/static/app.css index 438635f..b5ff52a 100644 --- a/static/app.css +++ b/static/app.css @@ -109,11 +109,16 @@ a:not(.icon):hover::after { box-shadow: 0px 0px 15px 2px #410f5e; } +.pane img { + width: 100%; +} + input { background-color: rgba(255, 255, 255, 0.8); } .video { + width: 100% !important; background-color: rgba(0, 0, 0, 1.0); } |
