this is the least fun i've ever had with web design

This commit is contained in:
Ell 2024-05-21 16:31:30 +02:00
parent 3341056607
commit f3076d1db1
2 changed files with 2 additions and 5 deletions

View file

@ -12,9 +12,7 @@
{% else %} {% else %}
{% assign url = post.url | append: post.image %} {% assign url = post.url | append: post.image %}
{% endif %} {% endif %}
<div class="devlog-image"> <img src="{{ url }}" class="devlog-image" width="100%" height="120px" alt="Cover image for post {{ post.title }}">
<img src="{{ url }}" width="100%" alt="Cover image for post {{ post.title }}">
</div>
{% endif %} {% endif %}
<h4 class="devlog-title">{{ post.title }}</h4> <h4 class="devlog-title">{{ post.title }}</h4>
<div class="text-muted">{{ post.date | date_to_string }}</div> <div class="text-muted">{{ post.date | date_to_string }}</div>

View file

@ -158,8 +158,7 @@ a:visited.wide-link {
margin-top: 20px; margin-top: 20px;
} }
.devlog-image img { .devlog-image {
height: 120px;
object-fit: cover; object-fit: cover;
margin-bottom: 10px; margin-bottom: 10px;
} }