Update entry card styling and add content container

This commit is contained in:
2026-01-08 01:46:52 +01:00
parent cfb4fac284
commit 4eb4d24d35

View File

@@ -82,7 +82,8 @@ h4 {
.entry-card {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
background: var(--card);
padding: 1rem 1rem 0.85rem;
border-radius: 16px;
@@ -97,15 +98,27 @@ h4 {
box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.entry-card__content {
flex: 1;
padding-right: 1rem;
}
.entry-card__title {
font-weight: 700;
line-height: 1.3;
}
.entry-card__actions {
.entry-card__actions.inline {
display: flex;
gap: 0.5rem;
margin-top: 0.75rem;
flex-direction: column;
gap: 0.35rem;
align-items: flex-end;
min-width: 140px;
}
.entry-link {
font-weight: 700;
color: var(--accent);
}
.pill {