-
Bug
-
Resolution: Fixed
-
Minor
-
3.6.4, 3.7, 3.8
-
MOODLE_36_STABLE, MOODLE_37_STABLE, MOODLE_38_STABLE
-
MOODLE_36_STABLE, MOODLE_37_STABLE
-
MDL-66039-master -
With reference to /theme/boost/scss/moodle/drawer.scss there is the selector:
#page {
margin-top: $navbar-height;
}
which is then defined further down as:
#page {
margin-top: $fixed-header-y;
}
which overrides it. However both $navbar-height and $fixed-header-y are the same value because of:
$fixed-header-y: $navbar-height;
at the top of the file.