Skip to content

Commit

Permalink
reduce margin
Browse files Browse the repository at this point in the history
  • Loading branch information
potatoqualitee committed Dec 28, 2024
1 parent e7aef27 commit b85eaea
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion css/components/landing/layout.landing.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
.content-wrapper {
max-width: 720px;
margin: 0 auto;
padding: 24px 32px;
padding: 16px 32px;
/* Reduced top padding from 24px to 16px */
width: 100%;
}
9 changes: 6 additions & 3 deletions css/layout.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 32px;
margin: 40px 0;
margin: 16px 0 40px;
/* Reduced top margin from 40px to 16px */
max-width: 100%;
}

Expand All @@ -29,7 +30,8 @@
@media (max-width: 1024px) {
.feature-grid {
gap: 24px;
margin: 32px 0;
margin: 16px 0 32px;
/* Adjusted margins */
}
}

Expand All @@ -41,7 +43,8 @@
.feature-grid {
grid-template-columns: 1fr;
gap: 20px;
margin: 24px 0;
margin: 12px 0 24px;
/* Further reduced margins for mobile */
}

.context-options {
Expand Down

0 comments on commit b85eaea

Please sign in to comment.