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> </script>
<style lang="scss"> <style lang="scss" scoped>
@import "@/styles/ux-variables.scss"; @import "@/styles/ux-variables.scss";
.contact-details-drawer .modal-title { .contact-details-drawer {
font-size: $h5-font-size; :deep(.modal-title) {
font-weight: $font-weight-normal !important; font-size: $h5-font-size;
font-weight: $font-weight-normal !important;
}
} }
</style> </style>