diff options
| author | Mhykol <mchaeldonald62@pm.me> | 2024-05-19 13:45:35 -0400 |
|---|---|---|
| committer | Mhykol <mchaeldonald62@pm.me> | 2024-05-19 13:45:35 -0400 |
| commit | 46bfd3eb282fe81e417516dec06f079f44e96423 (patch) | |
| tree | bf6da90b7074576b7d3530931b510c508a6a8637 /assets | |
| parent | b14b8a2f2c246437d339fb16d3ab3e97a7e7073e (diff) | |
Fixed image sizing for blog
Diffstat (limited to 'assets')
| -rw-r--r-- | assets/css/main.css | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/assets/css/main.css b/assets/css/main.css index 6a75b5e..22772dc 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -559,6 +559,12 @@ body { #blogitem div p { font-size: var(--shortdescription-font-size); } + #blogitem div p img { + max-width: 100%; + } + #blogitem div figure img { + max-width: 100%; + } #blogitem div h4 { color: rgba(229, 181, 103); font-size: calc(var(--body-font-size) - 0.5rem); @@ -980,6 +986,12 @@ body { #blogitem div p { font-size: var(--shortdescription-font-size); } + #blogitem div p img { + max-width: 100%; + } + #blogitem div figure img { + max-width: 100%; + } #blogitem div h4 { color: rgba(229, 181, 103); font-size: calc(var(--body-font-size) - 0.5rem); |
