Skip to content

Commit 1b8368d

Browse files
authored
Merge pull request #294 from codeunia-dev/enhance/mobileresponsive
Enhance: Improve Premium Page UI & Mobile Responsiveness
2 parents a13adca + f6e3606 commit 1b8368d

2 files changed

Lines changed: 269 additions & 74 deletions

File tree

app/globals.css

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,22 @@
173173
}
174174
/* animates a moving gradient background */
175175

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+
176192
@keyframes fadeIn {
177193
from {
178194
opacity: 0;

0 commit comments

Comments
 (0)