feat: blur muted text

This commit is contained in:
Kainoa Kanter 2023-04-06 22:11:10 -07:00
parent 1d57a0da15
commit c2097f9244

View file

@ -110,7 +110,7 @@
</MkA>
</template>
<template #reason>
<b>{{ muted.matched.join(", ") }}</b>
<b class="_mfm_blur_">{{ muted.matched.join(", ") }}</b>
</template>
</I18n>
</div>
@ -354,6 +354,15 @@ onUnmounted(() => {
</script>
<style lang="scss" scoped>
._mfm_blur_ {
filter: blur(6px);
transition: filter 0.3s;
&:hover {
filter: blur(0px);
}
}
.lxwezrsl {
font-size: 1.05em;
position: relative;