@@ -97,12 +97,15 @@ const ElementsSidebar = () => {
9797
9898 return (
9999 < div className = "d-flex flex-column h-100 p-4" >
100+ < h2 className = "px-3 mb-4" >
101+ { gettext ( 'Management' ) }
102+ </ h2 >
100103
101- < div className = "px-3 my-3 " >
102- < h3 > { gettext ( 'Navigation' ) } </ h3 >
103- </ div >
104+ < h3 className = "px-3 mb-2 " >
105+ { gettext ( 'Navigation' ) }
106+ </ h3 >
104107
105- < nav className = "nav nav-pills nav-fill flex-column" >
108+ < nav className = "nav nav-pills nav-fill flex-column mb-4 " >
106109 {
107110 Object . entries ( navigation ) . map ( ( [ et , label ] ) => (
108111 < Link key = { et }
@@ -113,28 +116,30 @@ const ElementsSidebar = () => {
113116 }
114117 </ nav >
115118
116- < div className = "px-3 my-3" >
117- < h3 > { gettext ( 'Export' ) } </ h3 >
119+ < h3 className = "px-3 my-2" >
120+ { gettext ( 'Export' ) }
121+ </ h3 >
118122
119- < p className = "text-muted" >
120- { gettext ( 'Export all visible elements.' ) }
121- </ p >
123+ < p className = "text-muted px-3 my-2 " >
124+ { gettext ( 'Export all visible elements.' ) }
125+ </ p >
122126
127+ < div className = "text-muted px-3 mb-4" >
123128 < Select options = { exportOptions } onChange = { handleExport } placeholder = { gettext ( 'Select format ...' ) } />
124-
125129 </ div >
126130
127- < div className = "px-3 my-3" >
128- < h3 > { gettext ( 'Import' ) } </ h3 >
131+ < h3 className = "px-3 mb-2" >
132+ { gettext ( 'Import' ) }
133+ </ h3 >
129134
130- < p className = "text-muted" >
131- { gettext ( 'Import an RDMO XML file.' ) }
132- </ p >
135+ < p className = "text-muted px-3 mb-2 " >
136+ { gettext ( 'Import an RDMO XML file.' ) }
137+ </ p >
133138
139+ < div className = "text-muted px-3 mb-4" >
134140 < input className = "form-control" type = "file" id = "fileUpload" name = "uploaded_file"
135141 onChange = { handleFileUpload } />
136142 </ div >
137-
138143 </ div >
139144 )
140145}
0 commit comments