We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8349949 commit 6ad8b0eCopy full SHA for 6ad8b0e
frontend/src/pages/index.module.css
@@ -99,7 +99,7 @@
99
grid-template-columns: repeat(6, 1fr);
100
gap: 1.5rem;
101
margin-top: 3rem;
102
- animation: fadeIn 1s ease-out 0.6s both;
+ animation: simpleFadeIn 1s ease-out 0.6s both;
103
max-width: 600px;
104
width: 100%;
105
}
@@ -136,6 +136,15 @@
136
137
138
139
+@keyframes simpleFadeIn {
140
+ from {
141
+ opacity: 0;
142
+ }
143
+ to {
144
+ opacity: 1;
145
146
+}
147
+
148
@keyframes slideDown {
149
from {
150
opacity: 0;
0 commit comments