From d7e7ccdb16bedcfd19ee49e64159f9c3cc367101 Mon Sep 17 00:00:00 2001 From: gahusb Date: Thu, 29 Jan 2026 22:51:19 +0900 Subject: [PATCH] =?UTF-8?q?=EC=A3=BC=EC=8B=9D=20=ED=8A=B8=EB=A0=88?= =?UTF-8?q?=EC=9D=B4=EB=93=9C=20=ED=95=B8=EB=93=9C=ED=8F=B0=20=ED=99=94?= =?UTF-8?q?=EB=A9=B4=20UI=20=EA=B0=9C=EC=84=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/stock/Stock.css | 52 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/src/pages/stock/Stock.css b/src/pages/stock/Stock.css index ef70c0f..d2fc6eb 100644 --- a/src/pages/stock/Stock.css +++ b/src/pages/stock/Stock.css @@ -539,4 +539,56 @@ .stock-panel { padding: 16px; } + + .stock-card { + padding: 16px; + } + + .stock-status > div { + gap: 8px; + } + + .stock-status strong { + font-size: 14px; + word-break: break-word; + } + + .stock-balance__summary { + grid-template-columns: 1fr; + } + + .stock-holdings__item { + grid-template-columns: minmax(0, 1fr); + gap: 12px; + align-items: start; + } + + .stock-holdings__name { + font-size: 15px; + } + + .stock-holdings__metric { + grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); + align-items: center; + justify-items: start; + } + + .stock-holdings__metric span { + font-size: 12px; + } + + .stock-holdings__metric strong { + font-size: 15px; + word-break: break-word; + } +} + +@media (max-width: 520px) { + .stock-holdings__metric { + grid-template-columns: minmax(0, 1fr); + } + + .stock-holdings__metric strong { + font-size: 14px; + } }