From cd6f9a47cb215f3c0609c486e123c79072989aaa Mon Sep 17 00:00:00 2001 From: novice1993 Date: Sat, 2 Sep 2023 03:15:51 +0900 Subject: [PATCH] =?UTF-8?q?[Design]=20=EC=9D=BC=EB=B6=80=20=EC=BB=B4?= =?UTF-8?q?=ED=8F=AC=EB=84=8C=ED=8A=B8=20CSS=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 가격/거래량 컨트롤러 관련 컴포넌트 CSS 수정 Issues #12 --- client/src/components/StockOrderSection/PriceSetting.tsx | 6 ++++++ client/src/components/StockOrderSection/VolumeSetteing.tsx | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/client/src/components/StockOrderSection/PriceSetting.tsx b/client/src/components/StockOrderSection/PriceSetting.tsx index ac719730..0ead4c64 100644 --- a/client/src/components/StockOrderSection/PriceSetting.tsx +++ b/client/src/components/StockOrderSection/PriceSetting.tsx @@ -78,6 +78,7 @@ const PriceController = styled.input` height: 30px; border: 1px solid darkgray; border-right: none; + border-radius: 0.2rem 0 0 0.2rem; `; const DirectionBox = styled.div` @@ -96,6 +97,11 @@ const DirectionBox = styled.div` &.PriceUp { border-bottom: none; + border-radius: 0 0.2rem 0 0; + } + + &.PriceDown { + border-radius: 0 0 0.2rem 0; } } `; diff --git a/client/src/components/StockOrderSection/VolumeSetteing.tsx b/client/src/components/StockOrderSection/VolumeSetteing.tsx index dee00d95..18cd8bd8 100644 --- a/client/src/components/StockOrderSection/VolumeSetteing.tsx +++ b/client/src/components/StockOrderSection/VolumeSetteing.tsx @@ -86,6 +86,7 @@ const VolumeController = styled.input` height: 30px; border: 1px solid darkgray; border-right: none; + border-radius: 0.2rem 0 0 0.2rem; `; const DirectionBox = styled.div` @@ -104,6 +105,11 @@ const DirectionBox = styled.div` &.VolumeUp { border-bottom: none; + border-radius: 0 0.2rem 0 0; + } + + &.VolumeDown { + border-radius: 0 0 0.2rem 0; } } `;