Skip to content

Commit

Permalink
wip(front): set article padding breakpoint (#1025)
Browse files Browse the repository at this point in the history
  • Loading branch information
dgrebb committed Feb 26, 2024
1 parent ec98afa commit c84fea9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion front/src/routes/(layouts)/article.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
.article {
--title-offset: 2.77rem;
position: relative;
padding: 1rem 2.33rem 0;
min-width: 100%;
overflow: none;
&__header {
Expand Down Expand Up @@ -60,3 +59,9 @@
min-width: 75%;
}
}

@media screen and (min-width: 768px) {
.article {
padding: 1rem 2.33rem 0;
}
}

0 comments on commit c84fea9

Please sign in to comment.