mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-08 22:53:25 +00:00
27 lines
376 B
CSS
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);
|
|
}
|
|
}
|