site/components/arcade/showcase/my.module.css
Clay Nicholson 279f1956c8 Update
2024-08-16 01:05:02 -04:00

29 lines
637 B
CSS

.feed {
width: 100%;
overflow-y: auto;
overflow-x: hidden;
align-self: center;
display: grid;
grid-gap: 0px;
background-color: rgb(214, 214, 214);
padding: 10px;
/* Small screens */
@media (min-width: 640px) {
grid-template-columns: repeat(4, 1fr); /* 4 equal-width columns */
}
/* Medium screens */
@media (min-width: 768px) {
grid-template-columns: repeat(5, 1fr); /* 5 equal-width columns */
}
/* Large screens */
@media (min-width: 1024px) {
grid-template-columns: repeat(6, 1fr); /* 6 equal-width columns */
}
}
.title{
margin-top: 200px;
}