Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
4.2
-
MOODLE_402_STABLE
-
MOODLE_402_STABLE
-
MDL-77278-master -
-
1
-
HQ 2023 Sprint i1.1 Moppies
Description
It looks like the new sticky footer height introduced in MDL-76357 is not working as expected in firefox.
The errors are related to the clamp CSS functions that define the sticky footer height depending on the font size.
$stickyfooter-height: clamp(96px, calc(#{$font-size-base} * 3), calc(#{$font-size-base} * 3)) !default; |
This clamp calculation can be replaced by:
$stickyfooter-height: calc(max(96px, calc(#{$font-size-base} * 3))) !default; |