Skip to content

Commit

Permalink
fix(layout): set padding for smaller screens
Browse files Browse the repository at this point in the history
  • Loading branch information
jmiguelv committed Jan 17, 2025
1 parent 2d8725b commit a0ab196
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion frontend/src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,15 @@
font-size: var(--font-size-0);
}
@media (max-width: 1279px) {
.layout {
padding-inline: var(--size-2);
}
}
@media (min-width: 1280px) {
.layout {
padding-inline: 0;
}
}
</style>
</style>

0 comments on commit a0ab196

Please sign in to comment.