Skip to content

Commit

Permalink
feat: Reduce mobile container padding
Browse files Browse the repository at this point in the history
  • Loading branch information
sanity committed Oct 30, 2024
1 parent d4fb733 commit 7a05419
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion hugo-site/themes/freenet/assets/css/freenet.css
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,14 @@ a:hover {

/* Container padding adjustments */
.container {
padding: 0 16px; /* Default padding for small screens */
padding: 0 16px;
}

/* Responsive padding for mobile */
@media screen and (max-width: 768px) {
.container {
padding: 0 8px;
}
}

/* Heading colors */
Expand Down

0 comments on commit 7a05419

Please sign in to comment.