CSR-1454: reduce text size of links on Schedule page

This commit is contained in:
Adam Caouette 2023-07-05 11:24:55 -04:00
parent a05951b7ce
commit a4e01e3670

View file

@ -8,7 +8,7 @@
<textBlock
cmsWidgetName="ChangeShopLink"
justifyText="center"
class="mb-3"
class="mb-3 text-link-small"
marginTopSizeOverride="1" />
</template>
<location-alerts cmsWidgetPrefix="LocationAlert-" ref="locationAlerts" />
@ -16,6 +16,7 @@
selectableDatesSetting="custom"
ref="datePicker"
v-model="selectedDate"
class="text-link-small"
:customSelectableDatesCallback="getAvailableDatesMethod"
@date-clicked="openInshopTimeSlotsModal" />
<time-slot-modal-question
@ -489,3 +490,13 @@ export default {
},
};
</script>
<style lang="scss">
.text-link-small {
a,
.btn-link {
font-size: 0.875rem;
line-height: 1.5;
}
}
</style>