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