While working on my project at this link, I encountered an issue with displaying a styled modal. Despite trying to import the styles using:
<style scoped>
@import "../styles/modal-style.css";
</style>
and even directly pasting the contents from here into the style tag, the styles do not seem to apply as expected.
I'm aiming for a similar result to what can be seen in this example, but the challenge lies in the fact that the modal is within a single file component.
This situation has raised the question: Why does Vue fail to load the styles in this context?