File tree Expand file tree Collapse file tree 4 files changed +12
-5
lines changed
CoursesPanel/NoCoursesView Expand file tree Collapse file tree 4 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -19,9 +19,9 @@ export const NoCoursesView = () => {
19
19
className = "d-flex align-items-center justify-content-center mb-4.5"
20
20
>
21
21
< Image src = { emptyCourseSVG } alt = { formatMessage ( messages . bannerAlt ) } />
22
- < h1 >
22
+ < h3 className = "h1" >
23
23
{ formatMessage ( messages . lookingForChallengePrompt ) }
24
- </ h1 >
24
+ </ h3 >
25
25
< p >
26
26
{ formatMessage ( messages . exploreCoursesPrompt ) }
27
27
</ p >
Original file line number Diff line number Diff line change @@ -40,8 +40,7 @@ export const DashboardLayout = ({ children }) => {
40
40
< Col { ...courseListColumnProps } className = "course-list-column" >
41
41
{ children }
42
42
</ Col >
43
- < Col { ...columnConfig . sidebar } className = "sidebar-column" >
44
- { ! isCollapsed && ( < h2 className = "course-list-title" > </ h2 > ) }
43
+ < Col { ...columnConfig . sidebar } className = { [ 'sidebar-column' , ! isCollapsed && 'not-collapsed' ] } >
45
44
< WidgetSidebarSlot />
46
45
</ Col >
47
46
</ Row >
Original file line number Diff line number Diff line change 6
6
7
7
.sidebar-column {
8
8
padding : 0 map-get ($spacers , 3 ) 0 map-get ($spacers , 1 );
9
+
10
+ & .not-collapsed {
11
+ padding-top : map-get ($spacers , 2 );
12
+
13
+ & >:first-child {
14
+ margin-top : map-get ($spacers , 5 \.5 );
15
+ }
16
+ }
9
17
}
10
18
11
19
@include media-breakpoint-down (lg) {
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ export const ConfirmEmailBanner = () => {
64
64
</ Button >
65
65
) }
66
66
>
67
- < h1 className = "text-center p-3" > { formatMessage ( messages . confirmEmailModalHeader ) } </ h1 >
67
+ < h4 className = "text-center p-3 h1 " > { formatMessage ( messages . confirmEmailModalHeader ) } </ h4 >
68
68
< p className = "text-center" > { formatMessage ( messages . confirmEmailModalBody ) } </ p >
69
69
</ MarketingModal >
70
70
</ >
You can’t perform that action at this time.
0 commit comments