We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01e9575 commit 53943aaCopy full SHA for 53943aa
src/user/proposals/ProposalEditor/ProposalEditor.js
@@ -6,13 +6,15 @@ import "./ProposalEditor.scss";
6
class ProposalEditor extends Component {
7
constructor(props) {
8
super(props);
9
- this.state = {};
+ this.state = {
10
+ org: true
11
+ };
12
}
13
render() {
14
return (
15
<div className="editor">
16
<div className="editor__navigation">
- <Navigation dashboard={this.state.dashboard} />
17
+ <Navigation org={this.state.org} />
18
</div>
19
<div className="editor__content">
20
<EditorContent />
src/user/proposals/ProposalEditor/ProposalEditor.scss
@@ -4,8 +4,9 @@
4
height: auto;
5
font-family: Muli, sans-serif;
.editor__navigation {
- flex: 1;
+ flex: 0.5;
border-right: solid 1px #dfe9f1;
+ background: #f5f5f5;
.editor__content {
flex: 5.5;
0 commit comments