styling fixes, conversion from px to rem

This commit is contained in:
Katie Kroell 2023-08-16 11:28:59 -04:00
parent 22ad36341a
commit 4f5e1a09f0

View file

@ -419,19 +419,22 @@ export default {
.cost {
color: $green;
font-size: 32px;
font-size: 2rem;
font-weight: 300;
line-height: 44px;
line-height: 2.75rem;
}
.deductible-text {
line-height: 24px;
line-height: 1.5rem;
}
::v-deep p {
line-height: 24px;
font-size: 14px;
margin-bottom: 8px;
line-height: 1.5rem;
font-size: 0.875rem;
margin-bottom: 0.5rem;
strong {
color: $black;
}
}
::v-deep .question-text {
@ -446,9 +449,9 @@ export default {
::v-deep .deductible-modal {
p {
margin-bottom: 0px !important;
font-size: 16px;
line-height: 26px;
margin-bottom: 0 !important;
font-size: 1rem;
line-height: 1.625rem;
}
img.mb-4 {
margin: 0 !important;
@ -461,9 +464,4 @@ export default {
}
}
// .my-4 {
// margin-top: 8px !important;
// margin-bottom: 0px !important;
// }
</style>