Skip to content

Commit 53943aa

Browse files
committed
Update navigation panel in proposal route to be properly styled
Fix nav panel width and inconsistent background colour for proposal editor page
1 parent 01e9575 commit 53943aa

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

src/user/proposals/ProposalEditor/ProposalEditor.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@ import "./ProposalEditor.scss";
66
class ProposalEditor extends Component {
77
constructor(props) {
88
super(props);
9-
this.state = {};
9+
this.state = {
10+
org: true
11+
};
1012
}
1113
render() {
1214
return (
1315
<div className="editor">
1416
<div className="editor__navigation">
15-
<Navigation dashboard={this.state.dashboard} />
17+
<Navigation org={this.state.org} />
1618
</div>
1719
<div className="editor__content">
1820
<EditorContent />

src/user/proposals/ProposalEditor/ProposalEditor.scss

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
height: auto;
55
font-family: Muli, sans-serif;
66
.editor__navigation {
7-
flex: 1;
7+
flex: 0.5;
88
border-right: solid 1px #dfe9f1;
9+
background: #f5f5f5;
910
}
1011
.editor__content {
1112
flex: 5.5;

0 commit comments

Comments
 (0)