Files
my-links/inertia/components/dashboard/link/item/favicon/link_favicon.module.css
Sonny 83c1966946 feat: recreate shared page
+ improve security by not exposing author's email
2024-11-10 00:00:20 +01:00

27 lines
376 B
CSS

.favicon {
position: relative;
display: flex;
align-items: center;
justify-content: center;
}
.faviconLoader {
position: absolute;
top: 0;
left: 0;
background-color: var(--secondary-color);
}
.faviconLoader > * {
animation: rotate 1s both reverse infinite linear;
}
@keyframes rotate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}