Fix posts display on mobile version

This commit is contained in:
KryptoPX 2022-11-29 18:34:13 +01:00 committed by root
parent be309f88e1
commit 4d97e88ea2
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;