File tree Expand file tree Collapse file tree 3 files changed +9
-12
lines changed Expand file tree Collapse file tree 3 files changed +9
-12
lines changed Original file line number Diff line number Diff line change @@ -113,6 +113,15 @@ const Toolbar = (props) => {
113
113
114
114
< div className = "toolbar__project-name-container" >
115
115
< ProjectName />
116
+ { /* Still show owner if not you */ }
117
+ { project ?. owner && ! userIsOwner && (
118
+ < p className = "toolbar__project-owner" >
119
+ { t ( 'Toolbar.By' ) } { ' ' }
120
+ < Link to = { `/${ project . owner . username } /sketches` } >
121
+ { project . owner . username }
122
+ </ Link >
123
+ </ p >
124
+ ) }
116
125
</ div >
117
126
118
127
< div style = { { flex : 1 } } />
@@ -127,16 +136,6 @@ const Toolbar = (props) => {
127
136
</ div >
128
137
) }
129
138
130
- { /* Still show owner if not you */ }
131
- { project ?. owner && ! userIsOwner && (
132
- < p className = "toolbar__project-owner" >
133
- { t ( 'Toolbar.By' ) } { ' ' }
134
- < Link to = { `/${ project . owner . username } /sketches` } >
135
- { project . owner . username }
136
- </ Link >
137
- </ p >
138
- ) }
139
-
140
139
< VersionIndicator />
141
140
142
141
< button
Original file line number Diff line number Diff line change 131
131
padding-left : #{math .div (10 , $base-font-size )} rem;
132
132
display : flex ;
133
133
align-items : center ;
134
- gap : #{math .div (16 , $base-font-size )} rem;
135
134
136
135
> section {
137
136
display : flex ;
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments