From c1d35fcc2e5bd5a59f489cd49ef6058c27703b16 Mon Sep 17 00:00:00 2001 From: "68893236+KINDNICK@users.noreply.github.com" <68893236+KINDNICK@users.noreply.github.com> Date: Thu, 8 Jan 2026 21:48:05 +0900 Subject: [PATCH] =?UTF-8?q?Fix=20:=20=ED=94=84=EB=9E=8D=20=ED=8E=98?= =?UTF-8?q?=EC=9D=B4=EC=A7=80=20css=EC=97=85=EB=8D=B0=EC=9D=B4=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- css/props.css | 26 +++++++++++++++++++------- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/css/props.css b/css/props.css index 6c1ebd3..8f8bf78 100644 --- a/css/props.css +++ b/css/props.css @@ -147,7 +147,7 @@ position: relative; aspect-ratio: 1 / 1; overflow: hidden; - background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%); + background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%); } .card-thumbnail img { @@ -356,19 +356,21 @@ } .modal-image { - max-width: 100%; - max-height: 60vh; - border-radius: var(--border-radius); + width: 400px; + height: 400px; + object-fit: contain; + border-radius: var(--border-radius) var(--border-radius) 0 0; box-shadow: var(--box-shadow-lg); - background: #2a2a2a; - padding: 20px; + background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%); + padding: 30px; } .modal-info { background: var(--bg-white); padding: var(--spacing-lg); border-radius: 0 0 var(--border-radius) var(--border-radius); - margin-top: -5px; + width: 400px; + box-sizing: border-box; } .modal-info h3 { @@ -445,4 +447,14 @@ grid-template-columns: repeat(2, 1fr); gap: var(--spacing-md); } + + .modal-image { + width: 300px; + height: 300px; + padding: 20px; + } + + .modal-info { + width: 300px; + } }