fix: css padding box and text overflow with different dimensions
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
hexlocation 2025-02-21 10:01:34 +01:00
parent 6c41aabe89
commit 781d108605
Signed by: hex
GPG key ID: A19EFFAAF8C00FCF
2 changed files with 2 additions and 2 deletions

View file

@ -24,7 +24,7 @@ hr {
border: 1px solid var(--color-gray-500);
background-color: var(--color-gray-800);
border-radius: 5px;
padding: 0.6vw;
padding: 0.8vw;
transition: 0.2s;
line-height: 1.3vw;
}

View file

@ -10,7 +10,7 @@ title: Blog Posts
<li class="py-2">
<a href="{{ post.url | url }}" class="postbtn">
<div class="blogbox">
<h2 class="text-gray-200">{{ post.data.title }}</h2>
<h2 class="text-gray-200 text-base">{{ post.data.title }}</h2>
<p class="text-gray-500 text-xs">{{ post.date }}</p>
<p id="preview" class="text-gray-400">{{ post.data.desc }}</p>
</div>