v0.1.11 아코디언 아이콘 및 상세 메타 수정

This commit is contained in:
2026-04-13 17:26:18 +09:00
parent 0e3a723eef
commit 38a98bb07a
6 changed files with 75 additions and 12 deletions

View File

@@ -284,15 +284,36 @@ input {
.menu-group__chevron {
color: var(--text-dim);
font-size: 14px;
transition: transform 0.22s ease, color 0.22s ease;
display: inline-flex;
align-items: center;
justify-content: center;
width: 16px;
height: 16px;
transition: color 0.22s ease;
}
.menu-group__chevron-icon {
width: 16px;
height: 16px;
display: block;
}
.menu-group__chevron-icon--up {
display: none;
}
.menu-group.is-open .menu-group__chevron {
transform: rotate(180deg);
color: var(--text-soft);
}
.menu-group.is-open .menu-group__chevron-icon--down {
display: none;
}
.menu-group.is-open .menu-group__chevron-icon--up {
display: block;
}
.sidebar-card {
padding: 18px 0 0;
border-top: 1px solid var(--border);
@@ -808,6 +829,10 @@ input {
font-weight: 700;
}
.meta-pill:hover {
color: var(--text);
}
.meta-item {
display: inline-flex;
align-items: center;
@@ -1006,6 +1031,8 @@ input {
}
.post-tag {
display: inline-flex;
align-items: center;
color: var(--accent);
font-weight: 700;
}
@@ -1308,6 +1335,10 @@ input {
gap: 8px;
}
.topbar__actions .button--accent {
padding-inline: 12px;
}
.icon-button--search-mobile {
display: inline-flex;
}
@@ -1376,6 +1407,14 @@ input {
height: 34px;
}
.search-shortcut {
display: none;
}
.search-trigger {
width: min(100%, 100%);
}
.post-card {
grid-template-columns: 1fr;
}
@@ -1415,4 +1454,8 @@ input {
gap: 6px;
font-size: 12px;
}
.meta-divider {
font-size: 11px;
}
}