修改 菜单颜色

This commit is contained in:
lVAL 2021-01-25 10:15:02 +08:00
parent 4f6789b89c
commit a97013ea95

View File

@ -5,7 +5,7 @@
@click.stop="onMouseDown"
>
<template v-if="hasChildren">
<b-navbar-nav>
<b-navbar-nav variant="#000">
<b-nav-item-dropdown
:text="node.meta.name"
right
@ -58,3 +58,10 @@ export default {
}
};
</script>
<style lang="scss" scoped>
/deep/ {
.nav-link {
color: #2b2b2b !important;
}
}
</style>