Updated responsive layout

This commit is contained in:
2025-07-06 01:10:23 -04:00
parent b18871471b
commit 0c4e89dc9a
2 changed files with 19 additions and 16 deletions

View File

@ -69,16 +69,17 @@
}
/* Grid Pattern */
.home-grid-container {
padding: 0 15% 2rem 15%;
}
.home-grid {
display: grid;
aspect-ratio: 1 / 1;
width: 100%;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(3, 1fr);
padding: 1rem;
box-sizing: border-box;
}
.home-grid svg {
width: 100%;
height: 100%;
@ -87,7 +88,7 @@
/* -md */
@media (min-width: 992px) {
.home-grid {
.home-grid-container {
padding: 0;
}
}