Commit bf272410 authored by Kim, Subin's avatar Kim, Subin
Browse files

ScheduleList 내용 수정

parent 9f58d899
......@@ -3,7 +3,7 @@ import styles from "./schedule.module.scss";
const KUSchedule = ({ title="복수전공 신청" }) => {
return (
<div className="card w-75 rounded-0 border-dark mx-auto">
<div className={`card-header rounded-0 px-1 ${styles.header}`}>
<div className={`card-header rounded-0 p-1 ${styles.header}`}>
<img className={styles.ku_tiger} src={process.env.PUBLIC_URL + '/ku-tiger(bgX).png'} alt="어흥이" />
</div>
<div className="card-body text-center pb-2">
......
......@@ -4,7 +4,7 @@ import styles from "./schedule.module.scss";
const ScheduleList = () => {
return (
<div className={styles.list}>
<div className={`accordion accordion-flush`} id="scheduleList">
<div className="accordion accordion-flush" id="scheduleList">
<Item />
<Item />
<Item />
......
.list {
height: 60vh;
height: 46vh;
overflow-y: auto;
padding-bottom: 4vh;
}
.activeBtn {
......@@ -65,8 +64,8 @@
.header {
background-color: crimson;
& .ku_tiger {
width: 46px;
height: 35px;
width: 42px;
height: 30px;
}
}
......
import Menu from "../components/Menu/Menu.js";
import HomeBtn from "../components/Buttons/HomeBtn.js";
import ScheduleModal from "../components/Modal/ScheduleModal.js";
import KUSchedule from "../components/Schedule/KUSchedule.js";
import ScheduleList from "../components//Schedule/ScheduleList.js";
import DateView from "../components/Calendar/DateView.js";
import Footer from "../components/Footer.js";
const SchedulePage = () => {
......@@ -10,11 +8,7 @@ const SchedulePage = () => {
<>
<Menu />
<HomeBtn />
<button type="button" className="btn btn-primary" data-bs-toggle="modal" data-bs-target="#scheduleModal">
<ScheduleModal />
</button>
<KUSchedule />
<ScheduleList />
<DateView />
<Footer pathname="schedule/edit" />
</>
)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment