Skip to content

Commit

Permalink
[Design] 일부 컴포넌트 CSS 수정
Browse files Browse the repository at this point in the history
- 가격/거래량 컨트롤러 관련 컴포넌트 CSS 수정

Issues #12
  • Loading branch information
novice1993 committed Sep 1, 2023
1 parent 7c156d7 commit cd6f9a4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions client/src/components/StockOrderSection/PriceSetting.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand All @@ -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;
}
}
`;
6 changes: 6 additions & 0 deletions client/src/components/StockOrderSection/VolumeSetteing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand All @@ -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;
}
}
`;
Expand Down

0 comments on commit cd6f9a4

Please sign in to comment.