notification: add selector on title, move styles

This commit is contained in:
2022-01-10 15:59:36 +01:00
parent af6f3043ae
commit d60938352b
4 changed files with 34 additions and 36 deletions

View File

@@ -108,31 +108,5 @@ export default {
</script>
<style lang="scss">
div.notification {
h2, h6 {
a {
text-decoration: none;
}
&::before {
font-family: "ForkAwesome";
font-size: 80%;
margin-right: 0.3em;
}
}
div.read {
h2, h6 {
font-weight: 500;
&::before {
content: "\f2b7"; //envelope-open-o
}
}
}
div.unread {
h2, h6 {
&::before {
content: "\f003"; //envelope-o
}
}
}
}
</style>