style(post-entry): enhance hover effects and transition timing for entries

This commit is contained in:
Aditya Telange
2026-04-26 16:59:05 +05:30
parent 4d06cee5d6
commit 2935f62cde
+5 -3
View File
@@ -50,12 +50,14 @@
padding: var(--gap);
background: var(--entry);
border-radius: var(--radius);
transition: transform 0.1s;
transition: transform 0.25s ease;
border: 1px solid var(--border);
}
.post-entry:active {
transform: scale(0.96);
.post-entry:hover,
.post-entry:focus-within {
transform: translateY(-2px);
border-color: var(--tertiary);
}
.tag-entry .entry-cover {