13 lines
167 B
SCSS
13 lines
167 B
SCSS
/**
|
|
* Academy Course courseContent
|
|
*/
|
|
|
|
.stick-top {
|
|
position: sticky;
|
|
bottom: 0;
|
|
top: calc(10px);
|
|
&.course-content-fixed {
|
|
top: calc(70px + 10px);
|
|
}
|
|
}
|