Skip to content

Commit

Permalink
fix: mobile layout for member search
Browse files Browse the repository at this point in the history
  • Loading branch information
akinsey committed Sep 14, 2021
1 parent 7639921 commit c2ac105
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/views/MemberSearch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,14 @@ export default {

<style lang="scss">
.member-search main #public-content { grid-template-areas: 'header header' 'main sidebar' 'main sidebar'; }
@media screen and (max-width: 767px) {
.member-search main #public-content {
grid-template-areas:
"header header"
"main main"
"sidebar sidebar";
}
}
.user-search { grid-area: main; }
.sidebar {
grid-area: sidebar;
Expand Down

0 comments on commit c2ac105

Please sign in to comment.