Fix mobile image display

This commit is contained in:
N-Upchurch
2023-08-09 19:55:58 -05:00
parent 85a5bde512
commit ca908fdf0f
2 changed files with 9 additions and 7 deletions

View File

@ -74,9 +74,9 @@
:root {
/* Font Sizes */
--font-xxl: 2.25rem;
--font-xl: 1.25rem;
--font-l: 1.25rem;
--font-n: .95rem;
--font-xl: 1.5rem;
--font-l: 1.5rem;
--font-n: 1rem;
}
}
@ -510,18 +510,20 @@ h2 + .header-anchor {
}
.postlist-item {
flex-flow: column wrap;
width: 100%
}
.postlist-link {
width: 100%;
padding: 0;
}
.post-image {
width: 100%;
height: auto;
min-width: 100%;
}
.post-image-container {
margin-right: 0;
height: 10em;
min-width: 100%;
max-height: 10em;
width: 100%;
}
.post-metadata {
margin-bottom: var(--single-gap);