feat: 组件样式分离

This commit is contained in:
duanshuwen
2025-09-13 22:10:47 +08:00
parent 945cb823ad
commit 8dc27ec9fa
2 changed files with 6 additions and 5 deletions

View File

@@ -22,9 +22,5 @@ const props = defineProps({
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">
.container { @import "./styles/RecommendPostsComponent.scss";
width: 100%;
flex: 1;
margin-bottom: 12px;
}
</style> </style>

View File

@@ -0,0 +1,5 @@
.container {
width: 100%;
flex: 1;
margin-bottom: 12px;
}