Skip to content

Commit

Permalink
🏕fix:还原scss#@import
Browse files Browse the repository at this point in the history
  • Loading branch information
durunsong committed Nov 1, 2024
1 parent 6f512c6 commit e66d380
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/layouts/LeftMode.vue
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const handleClickOutside = () => {
</script>

<style lang="scss" scoped>
@use "@/styles/mixins";
@import "@/styles/mixins.scss";
$transition-time: 0.35s;
.app-wrapper {
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/TopMode.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const { showTagsView, showLogo } = storeToRefs(settingsStore);
</script>

<style lang="scss" scoped>
@use "@/styles/mixins";
@import "@/styles/mixins.scss";
$transition-time: 0.35s;
.app-wrapper {
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/components/AppMain.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const settingsStore = useSettingsStore();
</script>

<style lang="scss" scoped>
@use "@/styles/mixins";
@import "@/styles/mixins.scss";
.app-main {
width: 100%;
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/components/Settings/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ watchEffect(() => {
</script>

<style lang="scss" scoped>
@use "@/styles/mixins";
@import "@/styles/mixins.scss";
.setting-container {
padding: 20px;
Expand Down

0 comments on commit e66d380

Please sign in to comment.