chore: compatible with new sass
This commit is contained in:
parent
e03fc8ad28
commit
c02a24ee94
|
@ -168,5 +168,5 @@ defineExpose({
|
|||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import '@/styles/content';
|
||||
@use '@/styles/content';
|
||||
</style>
|
||||
|
|
|
@ -212,7 +212,7 @@ watch(
|
|||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import '@/styles/content';
|
||||
@use '@/styles/content';
|
||||
|
||||
.content-container {
|
||||
//padding: 5px 5px 0;
|
||||
|
|
|
@ -22,7 +22,7 @@ const dialogStore = useDialogStore()
|
|||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import '@/styles/content';
|
||||
@use '@/styles/content';
|
||||
|
||||
.content-container {
|
||||
justify-content: center;
|
||||
|
|
|
@ -181,7 +181,7 @@ const onCleanLog = () => {
|
|||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import '@/styles/content';
|
||||
@use '@/styles/content';
|
||||
|
||||
.line-item {
|
||||
margin-bottom: 5px;
|
||||
|
|
|
@ -281,7 +281,7 @@ const onPublish = async () => {
|
|||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import '@/styles/content';
|
||||
@use '@/styles/content';
|
||||
|
||||
.total-message {
|
||||
margin: 10px 0 0;
|
||||
|
|
|
@ -776,7 +776,7 @@ const clientTableColumns = computed(() => {
|
|||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import '@/styles/content';
|
||||
@use '@/styles/content';
|
||||
|
||||
.line-chart {
|
||||
display: flex;
|
||||
|
|
|
@ -222,5 +222,5 @@ const onListLimitChanged = (limit) => {
|
|||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import '@/styles/content';
|
||||
@use '@/styles/content';
|
||||
</style>
|
||||
|
|
|
@ -203,5 +203,5 @@ const onClose = () => {}
|
|||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import '@/styles/content';
|
||||
@use '@/styles/content';
|
||||
</style>
|
||||
|
|
|
@ -458,7 +458,7 @@ watch(
|
|||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import '@/styles/style';
|
||||
@use '@/styles/style' as style;
|
||||
|
||||
:deep(.toggle-btn) {
|
||||
border-style: solid;
|
||||
|
@ -483,7 +483,7 @@ watch(
|
|||
}
|
||||
|
||||
.nav-pane-bottom {
|
||||
@include top-shadow(0.1);
|
||||
@include style.top-shadow(0.1);
|
||||
color: v-bind('themeVars.iconColor');
|
||||
border-top: v-bind('themeVars.borderColor') 1px solid;
|
||||
}
|
||||
|
|
|
@ -850,7 +850,7 @@ defineExpose({
|
|||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import '@/styles/content';
|
||||
@use '@/styles/content';
|
||||
|
||||
.browser-tree-wrapper {
|
||||
height: 100%;
|
||||
|
|
|
@ -542,7 +542,7 @@ const onCancelOpen = () => {
|
|||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import '@/styles/content';
|
||||
@use '@/styles/content';
|
||||
|
||||
.connection-tree-wrapper {
|
||||
height: 100%;
|
||||
|
|
|
@ -29,4 +29,11 @@ export default defineConfig({
|
|||
wailsjs: rootPath + 'wailsjs',
|
||||
},
|
||||
},
|
||||
css: {
|
||||
preprocessorOptions: {
|
||||
scss: {
|
||||
api: 'modern-compiler',
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue