Skip to content
Closed
57 changes: 0 additions & 57 deletions src/styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,63 +14,6 @@
"Segoe UI Symbol", "Noto Color Emoji";
}

@keyframes marquee {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To expand on Jelle's comment about atomic commits - that means fixes like these should be squashed into the original commit that introduced the mistake, i.e. the tailwind v4 commit.

0% {
transform: translateX(0%);
}
100% {
transform: translateX(-100%);
}
}

@keyframes marquee2 {
0% {
transform: translateX(100%);
}
100% {
transform: translateX(0%);
}
}

@keyframes scroller {
0% {
transform: translateY(10em);
}
100% {
transform: translateY(-14em);
}
}

@keyframes scroller2 {
0% {
transform: translateY(10em);
}
100% {
transform: translateY(-14em);
}
}

@keyframes fade-in {
from {
opacity: 0;
}
to {
opacity: 1;
}
}

@keyframes scroller3 {
100% {
transform: translateY(-50%);
}
}

@keyframes spin-reverse {
to {
transform: rotate(-360deg);
}
}

@media (prefers-color-scheme: dark) {
:root {
--foreground-rgb: 255, 255, 255;
Expand Down
Loading