Skip to content

Commit

Permalink
fix(wizard): remove unnecessary vertical scroll bar
Browse files Browse the repository at this point in the history
fixes #107

reverts vmware-archive/clarity#6706

- make the wizard 100% width
- pin the buttons to the bottom with flex-grow
  • Loading branch information
Ashley Ryan authored and ashleyryan committed Jul 26, 2022
1 parent b22abf9 commit 67df6d7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion projects/angular/src/wizard/_wizard.clarity.scss
Expand Up @@ -74,7 +74,6 @@
flex: 1 1 auto;
@include css-var(color, clr-wizard-main-textColor, $clr-wizard-main-textColor, $clr-use-custom-properties);
width: 100%;
min-height: 70vh;
}

.modal-footer {
Expand Down Expand Up @@ -379,6 +378,9 @@
.modal-body-wrapper {
// overriding forced style on .modal
max-height: 100%;
display: flex;
flex-grow: 1;
width: 100%;
}

&.wizard-md {
Expand Down

0 comments on commit 67df6d7

Please sign in to comment.