Skip to content

Commit 5f3c049

Browse files
committed
fixes:
- buy-right: buttons and scroll issue - overview page: course features collapsing - doubts: reply button
1 parent 4db8b5c commit 5f3c049

File tree

9 files changed

+26
-15
lines changed

9 files changed

+26
-15
lines changed

examples/views/about-course.hbs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,11 @@
8686

8787
</div>
8888
<div class="button-container row justify-content-center">
89-
<div class="button-solid col-6">
89+
<div class="button-solid col-5">
9090
<button>BUY NOW TO ENROLL</button>
9191
</div>
9292

93-
<div class="button-dashed col-6">
93+
<div class="button-dashed col-5">
9494
<button>ENROLL VIA OTP</button>
9595
</div>
9696
</div>

sass/styles/elements/elements.navigation.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
top:0;
66
background: $white;
77
width: 100%;
8+
height: 90px;
89
max-height:100px;
910
z-index: 200;
1011
display: flex;

sass/styles/media-query/media.about.course.scss

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,15 @@
1919
position: relative;
2020
width: 100%;
2121
top: 0;
22-
.button-dashed {
23-
margin: 0;
24-
}
22+
margin-top: 35px;
23+
24+
&.slide-right{
25+
transform: unset;
26+
}
27+
28+
.button-dashed {
29+
margin: 0;
30+
}
2531
}
2632

2733
.o-summary .para {
@@ -95,6 +101,4 @@
95101
.o-buy-top {
96102
display: none;
97103
}
98-
}
99-
100-
104+
}

sass/styles/media-query/media.navigation.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
.main-nav{
3535
padding-top: 10px;
3636
padding-bottom: 10px;
37+
height: 60px;
3738

3839
.hamburger-parent{
3940
font-size: $global-font-size;

sass/styles/media-query/media.o-client-add.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
@media screen and (max-width: 1200px) {
2+
$font-md: 10px;
23
.o-client-add {
34
.card {
45
@include padding-mixin(40px, 40px, 40px, 40px);
@@ -85,4 +86,6 @@
8586
}
8687
}
8788
}
89+
90+
8891
}

sass/styles/objects/o-about-course/o-about-course.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
@include margin(67px, 0, 0, 0);
3838
}
3939

40-
.para{
41-
@include margin(38px, 0, 0, 0);
40+
.rating{
41+
@include margin(0, 0, 38px, 0);
4242
}
4343

4444
.key{

sass/styles/objects/o-about-course/o-buy-right.scss

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@
1212
position: fixed;
1313
top: 145px;
1414
transition: all 0.35s ease;
15-
right: -14px;
15+
right: 0;
1616
z-index: 100;
1717
max-height: 730px;
1818

1919
.card{
2020
@include dimensions(100%, 100%);
21-
overflow-y: scroll;
21+
overflow: hidden;
2222
}
2323

2424
.button-container{
2525
margin-top: 23px;
26-
margin-bottom: 10px;
26+
margin-bottom: 20px;
2727
}
2828

2929
.button-solid{
@@ -37,7 +37,7 @@
3737
}
3838

3939
.card-video{
40-
@include dimensions(100%, 336px);
40+
@include dimensions(100%, 300px);
4141
position: relative;
4242
cursor: pointer;
4343
}
@@ -81,7 +81,7 @@
8181

8282
.course-features{
8383
&>.row{
84-
margin-bottom: 30px;
84+
padding-bottom: 6%;
8585
}
8686

8787
.img-desc{

sass/styles/objects/o-about-course/o-buy-top.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
.o-buy-top{
1010
@include dimensions(100%, 90px);
1111
position: fixed;
12+
top: 90px;
1213
z-index: 101;
1314
padding: 10px 4%;
1415
background-color: $vp-background;

sass/styles/objects/o-overview-course/o-overview-course.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
@include dimensions(100%, 100%);
2323
position: absolute;
2424
top: 0;
25+
left: 0;
2526
}
2627

2728
.para{

0 commit comments

Comments
 (0)