Wizard: Temporarily disable fixed footer

There's a new bug that's at least partially caused by styling commented out in this PR: when zooming in or out while in Wizard, the Wizard shrunks it's height to an unusable value.
This commit is contained in:
regexowl 2024-09-20 16:36:31 +02:00 committed by Michal Gold
parent 34bdfa368f
commit bc0ad00aa7

View file

@ -86,5 +86,16 @@ div.pf-v5-c-alert.pf-m-inline.pf-m-plain.pf-m-warning {
}
.pf-v5-c-wizard__main {
flex: 1 1 0
/* TO DO: This part of the code is responsible for the Wizard footer being fixed
at the bottom of the page. Unfortunately there's a new bug that's at least
partially caused by this styling: when zooming in or out while in Wizard,
the Wizard shrunks it's height to an unusable value.
Temporarily commenting out this code, until we figure out how the handle
this bug.
*/
// flex: 1 1 0
// TO DO: Remove after the fix
min-height: 800px;
}