File tree Expand file tree Collapse file tree 2 files changed +49
-2
lines changed Expand file tree Collapse file tree 2 files changed +49
-2
lines changed Original file line number Diff line number Diff line change
1
+ @import ' ~styles/utils/modules-entry' ;
2
+
3
+ .pageContainer {
4
+ composes : page- container from global;
5
+ height : 100% ;
6
+
7
+ :global {
8
+ animation-name : $page-entering-animation ;
9
+ }
10
+ }
11
+
12
+ .header {
13
+ padding : 0 0 1rem ;
14
+ margin-bottom : 1rem ;
15
+ border-bottom : 1px solid var (--gray-lighter );
16
+ h2 {
17
+ margin-bottom : 0.5rem ;
18
+ font-weight : bold ;
19
+ }
20
+ h4 {
21
+ margin-bottom : 0.5rem ;
22
+ font-weight : bold ;
23
+ }
24
+ }
25
+
26
+ .subtitle {
27
+ padding-top : 1rem ;
28
+ font-weight : bold ;
29
+ }
Original file line number Diff line number Diff line change
1
+ import styles from './MpeContainer.scss' ;
2
+
1
3
type Props = {
2
4
placeholder : true ; // Remove this when new props are added.
3
5
} ;
4
6
5
7
const MpeContainer : React . FC < Props > = ( ) => (
6
- < div >
7
- < h1 > MPE</ h1 >
8
+ < div className = { styles . pageContainer } >
9
+ < div className = "col-md-9" >
10
+ < header className = { styles . header } >
11
+ < h2 > Module Preference Exercise</ h2 >
12
+ < h4 > AY2021/2022 - Semester 2</ h4 >
13
+ </ header >
14
+ < h4 className = { styles . subtitle } > Overview</ h4 >
15
+
16
+ < p >
17
+ The Module Preference Exercise (MPE) is a project initiated by NUS to better understand
18
+ students’ demand for specific modules. Students who have completed this exercise{ ' ' }
19
+ < strong > will receive tie-breaker benefit</ strong > during the ModReg period.
20
+ </ p >
21
+ < p >
22
+ Do take note that this is only a planning exercise;{ ' ' }
23
+ < strong > it does not enroll you in the modules.</ strong >
24
+ </ p >
25
+ </ div >
8
26
</ div >
9
27
) ;
10
28
You can’t perform that action at this time.
0 commit comments