Spaces:
Sleeping
Sleeping
File size: 277 Bytes
5bd3663 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | .section {
margin-top: 2rem;
animation: fadeIn 0.4s ease;
}
.heading {
font-size: 1.15rem;
font-weight: 700;
color: var(--text-primary);
margin-bottom: 1rem;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1rem;
}
|