diff --git a/frontend/src/lib/components/dashboard/FileType.svelte b/frontend/src/lib/components/dashboard/FileType.svelte index c49acf1..49d0cdf 100644 --- a/frontend/src/lib/components/dashboard/FileType.svelte +++ b/frontend/src/lib/components/dashboard/FileType.svelte @@ -10,9 +10,21 @@ \ No newline at end of file + 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; + } +