We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a13adca + f6e3606 commit 1b8368dCopy full SHA for 1b8368d
2 files changed
app/globals.css
@@ -173,6 +173,22 @@
173
}
174
/* animates a moving gradient background */
175
176
+ @keyframes gradient-x {
177
+ 0%, 100% {
178
+ background-position: 0% 50%;
179
+ }
180
+ 50% {
181
+ background-position: 100% 50%;
182
183
184
+ /* animates gradient horizontally */
185
+
186
+ .animate-gradient-x {
187
+ background-size: 200% 200%;
188
+ animation: gradient-x 3s ease infinite;
189
190
+ /* Applies horizontal gradient animation */
191
192
@keyframes fadeIn {
193
from {
194
opacity: 0;
0 commit comments