fix price styling

This commit is contained in:
US\katie.kroell 2026-02-12 10:12:04 -05:00
parent 2cdf15cb95
commit f3ab2d9886

View file

@ -254,8 +254,7 @@ export default {
} }
.package-specs { .package-specs {
//display: flex; flex: 0;
flex-direction: row;
width: 100%; width: 100%;
max-height: 0; max-height: 0;
transition: all 1s ease; transition: all 1s ease;
@ -265,7 +264,6 @@ export default {
p { p {
color: #4d4e53; color: #4d4e53;
font-weight: 600; font-weight: 600;
//display: flex;
justify-content: space-between; justify-content: space-between;
&.sub-label { &.sub-label {
@ -308,21 +306,24 @@ export default {
.hide-when-closed { .hide-when-closed {
display: none; display: none;
@include media-breakpoint-up(md) { @include media-breakpoint-up(md) {
display: flex; display: block;
flex-direction: row;
} }
} }
} }
.pricing-info-desktop { .pricing-info-desktop {
display: flex;
flex: 1;
align-items: flex-end;
@include media-breakpoint-down(md) { @include media-breakpoint-down(md) {
display: none; display: none;
span { }
&.price { span {
color: #075f35; &.price {
font-size: 0.875rem; color: #075f35;
font-weight: $font-weight-bold; font-size: 0.875rem;
} font-weight: $font-weight-bold;
padding: 1rem 0 1rem 0;
} }
} }
} }
@ -330,12 +331,12 @@ export default {
.pricing-info-mobile { .pricing-info-mobile {
@include media-breakpoint-up(md) { @include media-breakpoint-up(md) {
display: none; display: none;
span { }
&.price { span {
color: #075f35; &.price {
font-size: 0.875rem; color: #075f35;
font-weight: $font-weight-bold; font-size: 0.875rem;
} font-weight: $font-weight-bold;
} }
} }
} }