Merge pull request #16 from TeamBNBN/fe/ClassInfo
[Front-end] feat: ClassInfo 추가
This commit is contained in:
commit
96f764880d
20
frontend/src/components/ClassInfo/ClassInfo.jsx
Normal file
20
frontend/src/components/ClassInfo/ClassInfo.jsx
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
import styles from './ClassInfo.module.css';
|
||||||
|
|
||||||
|
export default function ClassInfo({ classTerm, classTime }) {
|
||||||
|
return (
|
||||||
|
<div className={styles.classInfo}>
|
||||||
|
<div className={styles.title}>수업정보</div>
|
||||||
|
<div className={styles.info}>
|
||||||
|
<div className={styles.textGroup}>
|
||||||
|
<div className={styles.subtitle}>수업 기간</div>
|
||||||
|
<div className={styles.content}>{classTerm}</div>
|
||||||
|
</div>
|
||||||
|
<div className={styles.textGroup}>
|
||||||
|
<div className={styles.subtitle}>수업시간</div>
|
||||||
|
<div className={styles.content}>{classTime}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<button className={styles.button}>수강신청</button>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
55
frontend/src/components/ClassInfo/ClassInfo.module.css
Normal file
55
frontend/src/components/ClassInfo/ClassInfo.module.css
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
.classInfo {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 20px;
|
||||||
|
width: 100%;
|
||||||
|
padding: 20px;
|
||||||
|
border-radius: 20px;
|
||||||
|
background-color: var(--background);
|
||||||
|
border: 1px solid var(--border-color);
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
font-size: 24px;
|
||||||
|
font-weight: 700;
|
||||||
|
line-height: 1.2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 10px;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.textGroup {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.subtitle {
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: 1.4;
|
||||||
|
margin-bottom: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 300;
|
||||||
|
line-height: 1.4;
|
||||||
|
color: var(--text-color-secondary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.button {
|
||||||
|
border: 0;
|
||||||
|
border-radius: 8px;
|
||||||
|
background-color: var(--primary-color);
|
||||||
|
text-align: center;
|
||||||
|
padding: 12px;
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: 700;
|
||||||
|
line-height: 1.4;
|
||||||
|
color: var(--whiteOpacity900);
|
||||||
|
}
|
1
frontend/src/components/ClassInfo/index.js
Normal file
1
frontend/src/components/ClassInfo/index.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
export { default as ClassInfo } from './ClassInfo';
|
Loading…
Reference in New Issue
Block a user