Merge pull request #84 from PX-Byte/fix-mobile-posts-display

Fix mobile posts display
This commit is contained in:
srgooglo 2022-11-30 15:36:00 +01:00 committed by GitHub
commit d625cdae69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -50,7 +50,7 @@ export default class Dashboard extends React.Component {
}
render() {
return <div className="postingDashboard">
return <div className="postingDashboard mobile">
<div
ref={this.primaryPanelRef}
className={classnames("panel", "fade-opacity-active")}

View File

@ -1,6 +1,10 @@
.postingDashboard {
display: grid;
&.mobile {
display: block;
}
grid-template-columns: 10vw 1fr 0.5fr;
grid-template-rows: 1fr;
grid-column-gap: 20px;