1
0
mirror of https://github.com/zclzone/vue-naive-admin.git synced 2026-01-02 14:20:21 +08:00

fix: remove scss style

This commit is contained in:
zclzone
2024-11-22 15:59:20 +08:00
parent c34c3646aa
commit 30ca69cf16
2 changed files with 15 additions and 10 deletions

View File

@@ -16,12 +16,12 @@
:config="config"
>
<template #prev="{ tipItem, index }">
<NButton type="primary" color="#fff" text-color="#fff" ghost round size="small" @click="prev(tipItem, index)">
<NButton class="mr-12" type="primary" color="#fff" text-color="#fff" ghost round size="small" @click="prev(tipItem, index)">
上一步
</NButton>
</template>
<template #next="{ tipItem }">
<NButton type="primary" color="#fff" text-color="#fff" ghost round size="small" @click="next(tipItem)">
<NButton class="mr-12" type="primary" color="#fff" text-color="#fff" ghost round size="small" @click="next(tipItem)">
下一步
</NButton>
</template>
@@ -128,11 +128,3 @@ function prev() {
myIntroStep.value.prev()
}
</script>
<style lang="scss" scoped>
.beginner-guide {
.n-button {
margin-right: 12px;
}
}
</style>