add style to links in notice (#11925)

* add style to links in notice

* fix for stylelint

* unrelated: fix eslint warning for unused variables
This commit is contained in:
Azri Kahar
2022-03-03 22:56:38 +08:00
committed by GitHub
parent 962af79dbc
commit dec85f5659
2 changed files with 12 additions and 10 deletions

View File

@@ -26,3 +26,13 @@ export default defineComponent({
},
});
</script>
<style lang="scss" scoped>
:deep(a) {
color: var(--primary);
&:hover {
color: var(--primary-125);
}
}
</style>