Rounder icons

This commit is contained in:
momo5502
2025-09-11 20:59:46 +02:00
parent 1ead26922c
commit 9935f60895
2 changed files with 10 additions and 1 deletions

View File

@@ -142,3 +142,12 @@ button.fancy.bg-secondary:hover {
backdrop-filter: blur(6px) brightness(0.8) saturate(1.3);
background: transparent;
}
/*
.folder-element .folder-icon {
filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
}
.folder-element:hover .folder-icon {
filter: drop-shadow(0px 0px 5px rgba(80, 80, 80, 0.4));
}
*/

View File

@@ -63,7 +63,7 @@ function getIcon(
return (
<div className={className}>
<div className="w-full h-full flex items-center">
<img className="rounded-sm" src={icon} />
<img className="rounded-lg folder-icon" src={icon} />
</div>
</div>
);