diff options
author | (quasar) nebula <towerofnix@gmail.com> | 2021-04-06 14:14:24 -0300 |
---|---|---|
committer | (quasar) nebula <towerofnix@gmail.com> | 2021-04-06 14:15:24 -0300 |
commit | de0f42a3cd34311d1448fc0ebed901ad1260d3db (patch) | |
tree | 602a983c5ad384f969af2e397156a35c4b52c9c8 | |
parent | 8ef62b0895af96fd67b66fc021e0f46ac817af3f (diff) |
auto-height image banner
this isn't a 100% perfect fix since loaded, upscaled banners will have a *slightly* different final height than the lazy load (about 3px), but it's relatively negligible. preferably, refined banners would be the target 1100x200 aspect ratio in the first place.
-rw-r--r-- | static/site.css | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/static/site.css b/static/site.css index 241d1615..ae41f88d 100644 --- a/static/site.css +++ b/static/site.css @@ -72,6 +72,7 @@ body::before { #banner img { display: block; width: 100%; + height: auto; } a { |