MDL-81294 core: Fix sticky footer height

In MDL-81184 a regression was generated by changing the height property
with min-height in the sticky footer. That caused unexpended behaviour
of the sticky footer being partially displayed in the course page
for small devices.
Replacing min-height with height as the original design.
This commit is contained in:
Mikel Martín 2024-03-20 11:33:33 +01:00
parent 757be30c39
commit 1248fa7537
3 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ body {
position: fixed;
right: 0;
left: 0;
min-height: $stickyfooter-height;
height: $stickyfooter-height;
bottom: calc(#{$stickyfooter-height} * -1);
transition: bottom .5s;
z-index: $zindex-fixed;

View File

@ -36112,7 +36112,7 @@ body {
position: fixed;
right: 0;
left: 0;
min-height: max(80px, 0.9375rem * 3);
height: max(80px, 0.9375rem * 3);
bottom: calc(max(80px, 0.9375rem * 3) * -1);
transition: bottom 0.5s;
z-index: 1030;

View File

@ -36046,7 +36046,7 @@ body {
position: fixed;
right: 0;
left: 0;
min-height: max(80px, 0.9375rem * 3);
height: max(80px, 0.9375rem * 3);
bottom: calc(max(80px, 0.9375rem * 3) * -1);
transition: bottom 0.5s;
z-index: 1030;