주식 즉시 스크래핑 api 오류 수정

This commit is contained in:
2026-01-26 03:58:00 +09:00
parent 5dab3d99c1
commit 5f4742085c
3 changed files with 137 additions and 73 deletions

View File

@@ -116,7 +116,7 @@
.stock-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 18px;
}
@@ -174,6 +174,7 @@
.stock-snapshot {
display: grid;
gap: 12px;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.stock-snapshot__card {
@@ -183,6 +184,7 @@
display: grid;
gap: 6px;
background: rgba(0, 0, 0, 0.2);
min-height: 94px;
}
.stock-snapshot__card.is-highlight {
@@ -262,6 +264,28 @@
gap: 14px;
}
.stock-tabs {
display: flex;
gap: 8px;
margin-bottom: 10px;
}
.stock-tab {
border: 1px solid var(--line);
background: rgba(0, 0, 0, 0.2);
color: var(--muted);
border-radius: 999px;
padding: 6px 12px;
font-size: 12px;
cursor: pointer;
transition: border-color 0.2s ease, color 0.2s ease;
}
.stock-tab.is-active {
border-color: rgba(255, 255, 255, 0.5);
color: var(--text);
}
.stock-news__item {
border: 1px solid var(--line);
border-radius: 16px;