UX: Use a minimum height for the wizard so it doesn't move as much

This commit is contained in:
Robin Ward 2016-09-16 12:04:40 -04:00
parent 4f9a7aa769
commit 05d1c8167f
2 changed files with 17 additions and 11 deletions

View File

@ -1,3 +1,4 @@
<div class='wizard-step-contents'>
{{#if step.title}}
<h1 class='wizard-step-title'>{{step.title}}</h1>
{{/if}}
@ -11,6 +12,7 @@
{{wizard-field field=field step=step}}
{{/each}}
{{/wizard-step-form}}
</div>
<div class='wizard-step-footer'>
<div class='wizard-progress'>

View File

@ -31,6 +31,10 @@ body.wizard {
width: 100%;
border: 1px solid #ccc;
.wizard-step-contents {
min-height: 460px;
}
.wizard-column-contents {
padding: 1.2em;