Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
students
Today KU
Commits
bf272410
Commit
bf272410
authored
Oct 31, 2021
by
Kim, Subin
Browse files
ScheduleList 내용 수정
parent
9f58d899
Changes
4
Hide whitespace changes
Inline
Side-by-side
client/src/components/Schedule/KUSchedule.js
View file @
bf272410
...
...
@@ -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 p
x
-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
"
>
...
...
client/src/components/Schedule/ScheduleList.js
View file @
bf272410
...
...
@@ -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
/>
...
...
client/src/components/Schedule/schedule.module.scss
View file @
bf272410
.list
{
height
:
6
0
vh
;
height
:
4
6vh
;
overflow-y
:
auto
;
padding-bottom
:
4vh
;
}
.activeBtn
{
...
...
@@ -65,8 +64,8 @@
.header
{
background-color
:
crimson
;
&
.ku_tiger
{
width
:
4
6
px
;
height
:
3
5
px
;
width
:
4
2
px
;
height
:
3
0
px
;
}
}
...
...
client/src/pages/SchedulePage.js
View file @
bf272410
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
"
/>
<
/
>
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment