12 lines
150 B
CSS
12 lines
150 B
CSS
/**
|
|
* Academy Course courseContent
|
|
*/
|
|
.stick-top {
|
|
position: sticky;
|
|
bottom: 0;
|
|
top: 10px;
|
|
}
|
|
.stick-top.course-content-fixed {
|
|
top: 80px;
|
|
}
|