diff --git a/static/css/application.css b/static/css/application.css index 2bb11efbc5..43c352acf4 100644 --- a/static/css/application.css +++ b/static/css/application.css @@ -2777,6 +2777,9 @@ div.course-wrapper section.course-content ol.vert-mod > li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; } +div.course-wrapper section.course-content ol.vert-mod > li ul { + list-style: disc outside none; + padding-left: 1em; } div.course-wrapper section.course-content section.tutorials ul { list-style: disc outside none; margin-left: 22.652px; } diff --git a/templates/sass/courseware/_courseware.scss b/templates/sass/courseware/_courseware.scss index 493b0239d1..87ac0a6ea7 100644 --- a/templates/sass/courseware/_courseware.scss +++ b/templates/sass/courseware/_courseware.scss @@ -2,6 +2,7 @@ html { height: 100%; max-height: 100%; } + body.courseware { height: 100%; max-height: 100%; @@ -173,6 +174,11 @@ div.course-wrapper { margin-bottom: 0; padding-bottom: 0; } + + ul { + list-style: disc outside none; + padding-left: 1em; + } } }