feat: optimize grid responsiveness

This commit is contained in:
2023-08-02 17:35:10 +02:00
parent 289b699c12
commit c8c745bb05
4 changed files with 14 additions and 7 deletions

View File

@ -10,6 +10,16 @@ a {
color: cadetblue
}
.custom-grid {
grid-template-columns: repeat(auto-fit, minmax(37vw, 1fr)) ;
}
@media(min-width: 640px){
.custom-grid {
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) ;
}
}
.noisy-gradient::after {
content: "";
top: 0;