Fix handling of oversized images in items

This commit is contained in:
Tim Van Baak 2024-04-16 01:28:32 +00:00
parent b480d6edfd
commit b7e83c5059
4 changed files with 4 additions and 1 deletions

View File

@ -35,6 +35,7 @@ article {
} }
article img { article img {
max-width: 100%; max-width: 100%;
height: auto;
} }
article textarea { article textarea {
width: 100%; width: 100%;

View File

@ -35,6 +35,7 @@ article {
} }
article img { article img {
max-width: 100%; max-width: 100%;
height: auto;
} }
button, summary { button, summary {
cursor: pointer; cursor: pointer;

View File

@ -19,6 +19,7 @@ article {
} }
article img { article img {
max-width: 100%; max-width: 100%;
height: auto;
} }
button, summary { button, summary {
cursor: pointer; cursor: pointer;

View File

@ -1,6 +1,6 @@
[project] [project]
name = "intake" name = "intake"
version = "1.0.4" version = "1.0.5"
[project.scripts] [project.scripts]
intake = "intake.cli:main" intake = "intake.cli:main"