앱 수정
This commit is contained in:
@@ -222,3 +222,144 @@ a {
|
||||
font-size: 12px;
|
||||
color: var(--gc-text-muted);
|
||||
}
|
||||
|
||||
/* ── 모바일 목록 → 상세/매매 스택 ── */
|
||||
.stack-screen {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.stack-screen-body {
|
||||
flex: 1;
|
||||
overflow-y: auto;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
padding: 0 16px 24px;
|
||||
}
|
||||
|
||||
.stack-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.mobile-stack-header {
|
||||
flex-wrap: nowrap;
|
||||
}
|
||||
|
||||
.mobile-back-btn {
|
||||
font-size: 22px;
|
||||
min-width: 44px;
|
||||
padding: 0 8px;
|
||||
color: var(--gc-accent);
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.mobile-stack-header-titles {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.mobile-stack-title {
|
||||
font-size: 18px;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.mobile-stack-subtitle {
|
||||
font-size: 12px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
|
||||
.mobile-list-row {
|
||||
padding: 12px 14px;
|
||||
}
|
||||
|
||||
.mobile-list-row--unread {
|
||||
background: rgba(139, 92, 246, 0.08);
|
||||
}
|
||||
|
||||
.mobile-list-row-main {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: flex-start;
|
||||
gap: 8px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.mobile-list-row-info {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.mobile-list-row-title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
font-weight: 700;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
.mobile-list-row-meta {
|
||||
font-size: 11px;
|
||||
margin-top: 4px;
|
||||
line-height: 1.35;
|
||||
}
|
||||
|
||||
.mobile-list-row-pin {
|
||||
display: flex;
|
||||
gap: 4px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.mobile-list-row-actions {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr 1fr;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.mobile-action-btn {
|
||||
padding: 10px 6px;
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
min-height: 40px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.mobile-action-btn--buy {
|
||||
background: var(--gc-green);
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.icon-btn {
|
||||
min-width: 36px;
|
||||
min-height: 36px;
|
||||
padding: 4px 8px;
|
||||
border-radius: 8px;
|
||||
background: rgba(255, 255, 255, 0.06);
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.icon-btn--danger {
|
||||
color: var(--gc-red);
|
||||
}
|
||||
|
||||
.live-dot {
|
||||
display: inline-block;
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
border-radius: 50%;
|
||||
background: var(--gc-text-dim);
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.live-dot.live { background: var(--gc-green); }
|
||||
.live-dot.connecting { background: var(--gc-orange); }
|
||||
.live-dot.disconnected { background: var(--gc-red); }
|
||||
|
||||
.mobile-history-row,
|
||||
.mobile-detail-row {
|
||||
padding: 12px 14px;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user