Skip to content

Commit

Permalink
fix: fix theme title spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronchan32 committed Jun 2, 2024
1 parent cf3737d commit 67a793c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/app/pages/Themes/Themes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,20 @@
}

h2 {
margin-bottom: 0;
margin-bottom: 2rem;

@media (min-width: $tablet-breakpoint) {
margin-bottom: 0;
}
}

.title-line {
display: none;
border: 1px solid #bababa;
margin-block: 1rem;

@media (min-width: $tablet-breakpoint) {
display: block;
margin-block: 2rem;
}
}
Expand Down

0 comments on commit 67a793c

Please sign in to comment.