Skip to content

Commit

Permalink
๐Ÿ›fix: files - ์Šคํฌ๋กค ๋‚ด๋ ธ์„ ๋•Œ body๊ฐ€ ๊นจ์ง€๋Š” ํ˜„์ƒ ์ˆ˜์ •
Browse files Browse the repository at this point in the history
  • Loading branch information
ShinHeeEul committed Jun 24, 2024
1 parent cb23089 commit 0c3cbfc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/main/Main.style.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@ import styled from "styled-components";
export const StyledMainDiv = styled.div`
display: flex;
width: 100vw;
height: 100vh;
height: 100%;
`;

export const MainBody = styled.div`
display: flex;
width: 100%;
height: 100%;
flex-direction: column;
align-items: center;
justify-contents: center;
Expand All @@ -19,7 +18,8 @@ export const MainContent = styled.div`
display: block;
flex: 1;
width: 100vw;
height: 100%;
height: auto;
overflow-y: scroll;
`;

export const StyledMainContentDiv = styled.div`
Expand Down
1 change: 1 addition & 0 deletions src/pages/stock/Stock.style.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export const StyledStockDiv = styled.div`

export const StyledStockRightDiv = styled.div`
background-color: ${(props) => (props.darkMode ? "#282828" : "white")};
overflow-y: scroll;
`;

export const StyledStockHeaderDiv = styled.div`
Expand Down

0 comments on commit 0c3cbfc

Please sign in to comment.