CASH-152: prettier - you're killin me smalls

This commit is contained in:
Adam Caouette 2025-03-17 18:54:22 -04:00
parent f29f246ef6
commit fea13aefb5
2 changed files with 15 additions and 11 deletions

View file

@ -72,7 +72,9 @@
:id="`${month.monthLabel}-${date.dateNum.toString()}`" />
<label :for="`${month.monthLabel}-${date.dateNum.toString()}`">
<span>{{ date.dateNum.toString() }}</span>
<span v-if="isPricingByDayExperiment && showPricingByDay && date.isSelectable" class="price">
<span
v-if="isPricingByDayExperiment && showPricingByDay && date.isSelectable"
class="price">
{{ date.priceString }}
</span>
</label>
@ -1089,7 +1091,8 @@ export default {
}
}
&.pricing-by-day { // pricing by day override styles
&.pricing-by-day {
// pricing by day override styles
.calendar-grid-container .grid-item {
margin: 0;
}

View file

@ -293,15 +293,16 @@ export default {
);
// While Pricing By Day Experiment is ongoing, using the updated datePicker
const datePickerInitialDataPromise = await datePickerForPricingByDay.methods.loadInitialData({
// setup config options for date-picker
selectableDatesSetting: "custom",
initialViewRowsToShow: 5,
customSelectableDatesCallback: getAvailableDates,
preSelectedDate: preSelectedDate,
baseDayPrice: baseDayPrice,
pricingByDayUpcharge: pricingByDayUpcharge,
});
const datePickerInitialDataPromise =
await datePickerForPricingByDay.methods.loadInitialData({
// setup config options for date-picker
selectableDatesSetting: "custom",
initialViewRowsToShow: 5,
customSelectableDatesCallback: getAvailableDates,
preSelectedDate: preSelectedDate,
baseDayPrice: baseDayPrice,
pricingByDayUpcharge: pricingByDayUpcharge,
});
const premiumFeePromise = baseMixin.methods.dispatchStoreActionWithLogging(
storeActions.GET_MOBILE_PREMIUM_FEE,