Skip to content

Commit

Permalink
fix: change NotMobile tags order (#1347)
Browse files Browse the repository at this point in the history
* fix: change NotMobile tags order

* fix: display none for left sidebar on mobile
  • Loading branch information
1emu authored Oct 19, 2023
1 parent 3b29e77 commit 82cc8a6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions src/pages/proposals.css
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@
.ProposalsPage__Container .ActionableLayout {
min-height: 300px;
}

.ProposalsPage__Sidebar {
display: none;
}
}

@media only screen and (min-width: 768px) {
Expand Down
8 changes: 4 additions & 4 deletions src/pages/proposals.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,15 +117,15 @@ export default function ProposalsPage() {
</NotMobile>
)}
<div className="ProposalsPage__Container">
<NotMobile>
<div className="ProposalsPage__Sidebar">
<div className="ProposalsPage__Sidebar">
<NotMobile>
<div>
<CategoryFilter filterType={ProposalType} />
<StatusFilter statusType={ProposalStatus} />
<TimeFrameFilter />
</div>
</div>
</NotMobile>
</NotMobile>
</div>
<div className="ProposalsPage__Content">
{proposals && (
<Mobile>
Expand Down

0 comments on commit 82cc8a6

Please sign in to comment.