Design/Markup
[SCSS] Global SCSS 적용 import scss
romeoh
2022. 10. 7. 10:44
반응형
css/_variables.scss
$color: rgb(178, 133, 133);
<style lang="scss">
@import "@/css/_variables.scss";
.bg-black {background-color: $color !important;}
</style>
반응형