Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1c89d9a

Browse files
risshregexowl
authored andcommittedFeb 19, 2025·
Fix: Ensure wizard footer remains visible in repo step
Adjust wizard layout to limit scrolling Fix: Improve button positioning and scrolling behavior in the repo step Adjust footer layout and flex changes for wizard content Fix: Removed outdated comments for code consistency
1 parent c73e124 commit 1c89d9a

File tree

1 file changed

+9
-12
lines changed

1 file changed

+9
-12
lines changed
 

‎src/Components/CreateImageWizard/CreateImageWizard.scss

+9-12
Original file line numberDiff line numberDiff line change
@@ -86,16 +86,13 @@ div.pf-v5-c-alert.pf-m-inline.pf-m-plain.pf-m-warning {
8686
}
8787

8888
.pf-v5-c-wizard__main {
89-
/* TO DO: This part of the code is responsible for the Wizard footer being fixed
90-
at the bottom of the page. Unfortunately there's a new bug that's at least
91-
partially caused by this styling: when zooming in or out while in Wizard,
92-
the Wizard shrunks it's height to an unusable value.
93-
94-
Temporarily commenting out this code, until we figure out how the handle
95-
this bug.
96-
*/
97-
// flex: 1 1 0
98-
99-
// TO DO: Remove after the fix
100-
min-height: 800px;
89+
flex: 1 1 auto;
90+
display: flex;
91+
flex-direction: column;
92+
justify-content: space-between;
93+
}
94+
95+
.pf-v5-c-wizard__footer {
96+
position: sticky;
97+
bottom: 0;
10198
}

0 commit comments

Comments
 (0)
Please sign in to comment.