22 lines
410 B
CSS
22 lines
410 B
CSS
.stays {
|
|
display: grid;
|
|
gap: 1.5rem;
|
|
grid-template-columns: auto;
|
|
|
|
/* Hide scrollbar IE and Edge */
|
|
-ms-overflow-style: none;
|
|
/* Hide Scrollbar Firefox */
|
|
scrollbar-width: none;
|
|
}
|
|
|
|
/* Hide Scrollbar Chrome, Safari and Opera */
|
|
.stays::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
@media screen and (min-width: 950px) {
|
|
.stays {
|
|
grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
|
|
}
|
|
}
|