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 {
max-width: 100%;
height: auto;
}
article textarea {
width: 100%;

View File

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

View File

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

View File

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