mirror of
https://github.com/danbulant/Portfolio
synced 2026-05-24 12:35:31 +00:00
feat: fancy hover animation for filetype
This commit is contained in:
parent
4c32c73c57
commit
e357e8d2a9
1 changed files with 18 additions and 6 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue