Skip to content

Commit

Permalink
[Design] CSS 일부 수정
Browse files Browse the repository at this point in the history
- 컴포넌트 border 및 일부 텍스트 color 수정

Issues #17
  • Loading branch information
novice1993 committed Sep 9, 2023
1 parent e2bbeb4 commit 25517e5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions client/src/components/CentralChartMenu/ExpandScreenBtn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ const Button = styled.div<OwnProps>`
display: flex;
justify-content: center;
align-items: center;
color: #2f4f4f;
font-size: 22px;
border-right: ${(props) => props.direction === "left" && "1px solid darkgray"};
border-left: ${(props) => props.direction === "right" && "1px solid darkgray"};
border-right: ${(props) => props.direction === "left" && "1px solid #2F4F4F"};
border-left: ${(props) => props.direction === "right" && "1px solid #2F4F4F"};
`;
4 changes: 2 additions & 2 deletions client/src/components/CentralChartMenu/Index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const Container = styled.div`
height: 44px;
display: flex;
flex-direction: row;
border-bottom: 1px solid darkgray;
border-bottom: 1px solid #2f4f4f;
}
.SecondLine {
Expand All @@ -55,6 +55,6 @@ const Container = styled.div`
flex-direction: row;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid darkgray;
border-bottom: 1px solid #2f4f4f;
}
`;
2 changes: 1 addition & 1 deletion client/src/components/CentralChartMenu/StockOverview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ const TransactionVolume = styled.div`
white-space: nowrap;
min-width: min-content;
font-size: 14px;
color: #525252;
color: #2f4f4f;
& span {
color: #999999;
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/StockOrderSection/Index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ const UpperBar = styled.div`
align-items: center;
width: 100%;
min-height: 44px;
border-bottom: 1px solid darkgray;
border-bottom: 1px solid #2f4f4f;
.Title {
font-size: 17px;
Expand Down

0 comments on commit 25517e5

Please sign in to comment.