Skip to content

Commit

Permalink
fix: css for post search view mobile layoujt
Browse files Browse the repository at this point in the history
  • Loading branch information
akinsey committed Nov 30, 2021
1 parent 230b3e1 commit be0438d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/views/PostSearch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,10 @@ export default {
</script>

<style lang="scss">
.post-search main #public-content { grid-template-areas: 'header header' 'main sidebar' 'main sidebar'; }
.post-search main #public-content {
grid-template-areas: 'header header' 'main sidebar' 'main sidebar';
@include break-mobile-sm { grid-template-areas: unset; }
}
.main { grid-area: main; }
.sidebar {
grid-area: sidebar;
Expand Down

0 comments on commit be0438d

Please sign in to comment.