Fix: Slightly reduce tag opacity on light theme

This commit is contained in:
Nelson Chan 2021-09-06 14:15:23 +08:00
parent 6e3a904aaa
commit c2148fc0f1

View File

@ -44,9 +44,14 @@ export default {
}
</script>
<style scoped>
<style lang="scss" scoped>
.tag-wrapper {
color: white;
opacity: 0.85;
.dark & {
opacity: 1;
}
}
.tag-text {