Add MFM fade functionality

This commit is contained in:
Isabell 2023-05-15 13:18:58 +10:00
parent 454fec34b9
commit e2552bdfbb
2 changed files with 6 additions and 0 deletions

View File

@ -299,6 +299,11 @@ const props = withDefaults(
filter: hue-rotate(360deg) contrast(150%) saturate(150%);
}
}
@keyframes mfm-fade {
0% { opacity: 0; }
100% { opacity: 1; }
}
</style>
<style lang="scss" scoped>

View File

@ -19,4 +19,5 @@ export const MFM_TAGS = [
"rainbow",
"sparkle",
"rotate",
"fade",
];