v0.1.40 홈 피드 및 문서 버전 정리

Made-with: Cursor
This commit is contained in:
2026-04-16 12:00:28 +09:00
parent 3f01b8b808
commit f839a1fba7
26 changed files with 520 additions and 235 deletions

View File

@@ -118,6 +118,11 @@ menu {
background: var(--bg);
}
.sidebar--left {
overflow: hidden;
transition: opacity 0.24s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar--right {
border-right: 0;
border-left: 1px solid var(--border);
@@ -131,13 +136,24 @@ menu {
overflow-y: auto;
}
.sidebar--left .sidebar__inner {
transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}
body.left-sidebar-collapsed .site-shell {
width: calc(var(--content-column) + var(--sidebar-right));
grid-template-columns: minmax(0, var(--content-column)) var(--sidebar-right);
grid-template-columns: 0 minmax(0, var(--content-column)) var(--sidebar-right);
}
body.left-sidebar-collapsed .sidebar--left {
display: none;
opacity: 0;
pointer-events: none;
border-right-color: transparent;
}
body.left-sidebar-collapsed .sidebar--left .sidebar__inner {
opacity: 0;
transform: translateX(-14px);
}
.sidebar__inner--right {
@@ -247,7 +263,6 @@ body.left-sidebar-collapsed .sidebar--left {
gap: 3px;
margin-left: 14px;
margin-top: 3px;
border-left: 1px solid var(--border);
padding-left: 0;
}
@@ -1359,8 +1374,8 @@ body:not(.left-sidebar-collapsed) .topbar__sidebar-toggle-icon--close {
.post-article {
max-width: var(--content-header);
margin: 0 auto;
padding: 18px 0 10px;
margin: 0 auto 3rem;
word-break: break-word;
}
.post-header {
@@ -1572,6 +1587,40 @@ body:not(.left-sidebar-collapsed) .topbar__sidebar-toggle-icon--close {
color: var(--text-soft);
}
.pagination--load-more {
justify-content: center;
padding-top: 28px;
}
.pagination__load-more {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 96px;
min-height: 34px;
padding: 8px 16px;
border: 1px solid #2f2f2f;
border-radius: 8px;
background: linear-gradient(180deg, #4a4a4a 0%, #242424 100%);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
color: #fff;
font-size: 12px;
font-weight: 700;
letter-spacing: -0.02em;
cursor: pointer;
transition: opacity 0.2s ease, transform 0.2s ease;
}
.pagination__load-more:hover {
transform: translateY(-1px);
opacity: 0.9;
}
.pagination__load-more:disabled {
opacity: 0.7;
cursor: wait;
}
.search-modal[hidden] {
display: none;
}