diff --git a/src/app/main/style.ts b/src/app/main/style.ts index bcde19b..7009920 100644 --- a/src/app/main/style.ts +++ b/src/app/main/style.ts @@ -1,6 +1,6 @@ import styled from "styled-components"; export const Page = styled.div` width: 100%; - height: 1000px; + height: 100vh; `; \ No newline at end of file diff --git a/src/components/common/sidebar/style.ts b/src/components/common/sidebar/style.ts index 420cfdf..957dd7c 100644 --- a/src/components/common/sidebar/style.ts +++ b/src/components/common/sidebar/style.ts @@ -151,6 +151,10 @@ img{ @media (max-width: 1264px) { justify-content: center; gap: 0; + img{ + width: 40px; + height: 40px; + } } `; diff --git a/src/components/pages/profile/index.tsx b/src/components/pages/profile/index.tsx deleted file mode 100644 index 96c7cf6..0000000 --- a/src/components/pages/profile/index.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from "react"; -import * as S from "./style"; -const index = () => { - return ( - - profile - - ); -}; - -export default index; diff --git a/src/components/pages/profile/style.ts b/src/components/pages/profile/style.ts deleted file mode 100644 index e501ccd..0000000 --- a/src/components/pages/profile/style.ts +++ /dev/null @@ -1,15 +0,0 @@ -import styled from "styled-components"; -export const ABox = styled.div` - height: 100vh; // 화면 높이의 100% - width: 100vw; - display: flex; - align-items: center; - justify-content: center; -`; - -export const BBox = styled.div` - width: 80%; - height: 100%; - background-color: #fff; - border-radius: 1.0625rem; -`;