feat: 사이드바 레이아웃 추가, 사이드바 컨텐츠 수정

This commit is contained in:
jhynsoo 2024-07-16 14:53:19 +09:00
parent b9eb4b00c1
commit f7d712a722
10 changed files with 27 additions and 24 deletions

View File

@ -3,6 +3,7 @@
border: 1px solid var(--border-color);
border-radius: 16px;
padding: 12px 16px;
box-sizing: border-box;
}
.answerHeader {

View File

@ -1,5 +1,5 @@
import styles from './MaxWidthLayout.module.css';
export default function MaxWidthLayout({ children }) {
return <div className={styles.area}>{children}</div>;
export default function MaxWidthLayout({ children, hasSideBar = false }) {
return <div className={`${styles.area} ${hasSideBar ? styles.hasSideBar : ''}`}>{children}</div>;
}

View File

@ -1,5 +1,21 @@
.area {
width: 100%;
max-width: 1320px;
padding: 0 40px;
margin: 0 auto;
box-sizing: border-box;
}
.hasSideBar {
display: flex;
gap: 20px;
& > aside {
flex-shrink: 0;
width: 320px;
}
& > main {
width: 100%;
}
}

View File

@ -1,5 +0,0 @@
import styles from './SideBar.module.css';
export default function SideBar({ children }) {
return <aside className={styles.sidebar}>{children}</aside>;
}

View File

@ -1,15 +0,0 @@
.sidebar {
display: flex;
flex-direction: column;
gap: 20px;
width: 320px;
& > ul {
display: flex;
flex-direction: column;
gap: 16px;
list-style: none;
margin: 0;
padding: 0;
}
}

View File

@ -7,6 +7,7 @@
font-size: 20px;
line-height: 1.2;
font-weight: 400;
margin-bottom: 16px;
}
.sub {

View File

@ -3,7 +3,7 @@ import styles from './SideLink.module.css';
export default function SideLink({ children, path }) {
return (
<li>
<li className={styles.list}>
<Link
to={path}
className={styles.link}

View File

@ -1,3 +1,8 @@
.list {
list-style: none;
margin-bottom: 16px;
}
.link {
width: 100%;
text-decoration: none;

View File

@ -4,4 +4,5 @@
font-size: 24px;
line-height: 1.2;
font-weight: 700;
margin-bottom: 20px;
}

View File

@ -1,4 +1,3 @@
export { default as SideBar } from './SideBar';
export { default as SideItem } from './SideItem';
export { default as SideLink } from './SideLink';
export { default as SideTitle } from './SideTitle';