Making styling scoped

This commit is contained in:
Michaela Brydon 2024-01-25 14:38:58 -05:00
parent 110fdd7ba0
commit 8429bc4703

View file

@ -139,11 +139,13 @@ export default {
};
</script>
<style lang="scss">
<style lang="scss" scoped>
@import "@/styles/ux-variables.scss";
.contact-details-drawer .modal-title {
font-size: $h5-font-size;
font-weight: $font-weight-normal !important;
.contact-details-drawer {
:deep(.modal-title) {
font-size: $h5-font-size;
font-weight: $font-weight-normal !important;
}
}
</style>