Skip to content

Commit

Permalink
Move sidebar down on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
umonkey committed Apr 1, 2024
1 parent 7abd60a commit a54dbe1
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion frontend/src/components/pages/HomePage/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,17 @@

.SideBar {
z-index: 2;
box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
box-shadow: rgba(50, 50, 93, 0.25) 0px 0px 15px 5px, rgba(0, 0, 0, 0.3) 0px 0px 15px 5px;
}

@media (orientation: portrait) {
.HomePage {
flex-direction: column;
}

.HomePage .map, .HomePage .SideBar {
flex-basis: 50%;
flex-grow: 1;
width: 100%;
}
}

0 comments on commit a54dbe1

Please sign in to comment.