Skip to content

Commit

Permalink
fix gap
Browse files Browse the repository at this point in the history
  • Loading branch information
fiji-flo committed Oct 26, 2023
1 parent d356e3b commit 62a1513
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion client/src/ui/organisms/placement/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ div.empty-place {

> section.place.bottom-banner {
display: grid;
gap: 3rem;
column-gap: 3rem;
grid-template-areas:
"nope pong note"
"nope pong no";
Expand Down Expand Up @@ -272,6 +272,14 @@ div.empty-place {
margin-top: auto;
}

@media screen and (max-width: $screen-xl) {
grid-template-areas:
"pong note"
"pong no";
grid-template-columns: auto max-content;
grid-template-rows: auto 2rem;
}

@media screen and (max-width: $screen-lg) {
grid-template-areas:
"pong pong"
Expand Down

0 comments on commit 62a1513

Please sign in to comment.