feat: fancy hover animation for filetype

This commit is contained in:
EETagent 2022-11-22 20:53:03 +01:00
parent 4c32c73c57
commit e357e8d2a9

View file

@ -10,9 +10,21 @@
</div>
<style>
div {
@apply flex items-center justify-between;
@apply py-1 px-4;
@apply bg-white rounded-xl shadow-md;
}
</style>
div {
@apply flex items-center justify-between;
@apply py-1 px-4;
@apply bg-white rounded-xl shadow-md;
@apply hover:bg-sspsBlue;
@apply hover:cursor-pointer;
}
div,
span {
@apply transition-all duration-300;
}
div:hover span {
@apply text-white;
}
</style>