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"; ...@@ -3,7 +3,7 @@ import styles from "./schedule.module.scss";
const KUSchedule = ({ title="복수전공 신청" }) => { const KUSchedule = ({ title="복수전공 신청" }) => {
return ( return (
<div className="card w-75 rounded-0 border-dark mx-auto"> <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="어흥이" /> <img className={styles.ku_tiger} src={process.env.PUBLIC_URL + '/ku-tiger(bgX).png'} alt="어흥이" />
</div> </div>
<div className="card-body text-center pb-2"> <div className="card-body text-center pb-2">
......
...@@ -4,7 +4,7 @@ import styles from "./schedule.module.scss"; ...@@ -4,7 +4,7 @@ import styles from "./schedule.module.scss";
const ScheduleList = () => { const ScheduleList = () => {
return ( return (
<div className={styles.list}> <div className={styles.list}>
<div className={`accordion accordion-flush`} id="scheduleList"> <div className="accordion accordion-flush" id="scheduleList">
<Item /> <Item />
<Item /> <Item />
<Item /> <Item />
......
.list { .list {
height: 60vh; height: 46vh;
overflow-y: auto; overflow-y: auto;
padding-bottom: 4vh;
} }
.activeBtn { .activeBtn {
...@@ -65,8 +64,8 @@ ...@@ -65,8 +64,8 @@
.header { .header {
background-color: crimson; background-color: crimson;
& .ku_tiger { & .ku_tiger {
width: 46px; width: 42px;
height: 35px; height: 30px;
} }
} }
......
import Menu from "../components/Menu/Menu.js"; import Menu from "../components/Menu/Menu.js";
import HomeBtn from "../components/Buttons/HomeBtn.js"; import HomeBtn from "../components/Buttons/HomeBtn.js";
import ScheduleModal from "../components/Modal/ScheduleModal.js"; import DateView from "../components/Calendar/DateView.js";
import KUSchedule from "../components/Schedule/KUSchedule.js";
import ScheduleList from "../components//Schedule/ScheduleList.js";
import Footer from "../components/Footer.js"; import Footer from "../components/Footer.js";
const SchedulePage = () => { const SchedulePage = () => {
...@@ -10,11 +8,7 @@ const SchedulePage = () => { ...@@ -10,11 +8,7 @@ const SchedulePage = () => {
<> <>
<Menu /> <Menu />
<HomeBtn /> <HomeBtn />
<button type="button" className="btn btn-primary" data-bs-toggle="modal" data-bs-target="#scheduleModal"> <DateView />
<ScheduleModal />
</button>
<KUSchedule />
<ScheduleList />
<Footer pathname="schedule/edit" /> <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