Add classes inline, remove from global.

This commit is contained in:
bmauger 2022-03-10 15:42:17 -05:00
parent d65a38b85a
commit c19bb1cf79
2 changed files with 1 additions and 8 deletions

View file

@ -9,7 +9,7 @@
@invalid-submit="onInvalidSubmit" @invalid-submit="onInvalidSubmit"
ref="theForm" ref="theForm"
v-slot="{ meta }" v-slot="{ meta }"
class="vehicle-damage-form" class="d-flex flex-column h-100"
> >
<funnel-footer <funnel-footer
ref="funnelFooter" ref="funnelFooter"

View file

@ -35,10 +35,3 @@ body {
overflow: hidden; overflow: hidden;
} }
} }
//Applies to <Form/> used for validation. Keeps footer stuck to the bottom.
.vehicle-damage-form {
display: flex;
flex-direction: column;
height: 100%;
}