recal modal styling fix

This commit is contained in:
Katie Kroell 2023-08-16 11:28:37 -04:00
parent 2f8eeacb20
commit 22ad36341a

View file

@ -16,7 +16,7 @@
class="fw-bold mb-2 subheader-text"
v-html="ModalSubheadertext"></p>
<p
class="mb-0 small"
class="mb-0 small modal-body"
v-html="ModalBodyText"></p>
<p
v-if="ModalSubBodyText"
@ -74,22 +74,16 @@ export default {
<style lang="scss" scoped>
.recal-modal-body {
h5 {
color: black;
}
p {
&:last-child {
margin-bottom: 0;
}
& strong {
color: black;
}
}
.subheader-text {
::v-deep .recal-modal-body {
h5 {
color: $black;
}
.modal-body {
strong {
color: $black;
font-weight: 400;
}
}
}
</style>