steering modal updates

This commit is contained in:
Katie Kroell 2026-02-24 16:20:59 -05:00
parent a01e4834fd
commit 4643ec65cb
3 changed files with 30 additions and 37 deletions

View file

@ -222,7 +222,6 @@ export default {
.modal-content {
margin: 1.5rem auto 0 auto;
.modal-body {
color: #4d4e53;
padding: 0 1.5rem 0 1.5rem;
.col {
max-width: 100%;

View file

@ -90,9 +90,11 @@ export default {
.cancel-link {
text-decoration: underline;
}
.modal-footer {
padding-bottom: 1rem;
}
.modal-body {
color: #4d4e53;
}
}
</style>

View file

@ -1,21 +1,24 @@
<template>
<modal
:ref="ModalName"
:modalId="ModalName"
:footerButtonText="ModalCloseButtonText"
@footerButtonEvent="footerButtonClick">
<h5 class="text-center mb-4">
{{ ModalHeadline }}
</h5>
<div>
<div
class="mb-4"
v-html="ModalBodyText"></div>
<div
v-if="ModalSubBodyText"
v-html="ModalSubBodyText"></div>
</div>
</modal>
<div class="steering-modal-container">
<modal
:ref="ModalName"
:modalId="ModalName"
:footerButtonText="ModalCloseButtonText"
@footerButtonEvent="footerButtonClick">
<h5 class="text-center mb-4 headline-text">
{{ ModalHeadline }}
</h5>
<div>
<div
class="mb-4"
v-html="ModalBodyText"></div>
<div
class="mb-4"
v-if="ModalSubBodyText"
v-html="ModalSubBodyText"></div>
</div>
</modal>
</div>
</template>
<script>
@ -74,24 +77,13 @@ export default {
</script>
<style lang="scss" scoped>
.modal {
&.modal-component {
.modal-dialog {
.modal-content {
.modal-body {
.modal-sub-body {
color: $gray-600;
}
ul {
margin-bottom: 0;
}
p {
&:last-child {
margin-bottom: 0;
}
}
}
}
:deep(.modal) {
.modal-footer {
justify-content: center;
button {
background-color: #167cac;
color: $white;
width: 71%;
}
}
}