Skip to content

Commit 611610a

Browse files
committed
minor changes
1 parent 502eb7e commit 611610a

File tree

1 file changed

+23
-23
lines changed

1 file changed

+23
-23
lines changed

src/components/Stories.js

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -187,27 +187,29 @@ const Stories = ({ authorId, followerId }) => {
187187

188188
return (
189189
<div>
190-
<div className='roadmap'>
191-
{Lists.stateList &&
192-
Lists.stateList.map((state, key) => {
193-
return (
194-
<Button
195-
className={
196-
currentStateSelected === state.status
197-
? 'btn btn-tabs btn-tabs-selected'
198-
: 'btn btn-tabs'
199-
}
200-
key={key}
201-
onClick={() => {
202-
selectState(state.status)
203-
setPage(1)
204-
}}
205-
>
206-
<i className='eos-icons'>{state.icon}</i>
207-
{state.status}
208-
</Button>
209-
)
210-
})}
190+
<div className='roadmap-container'>
191+
<div className='roadmap'>
192+
{Lists.stateList &&
193+
Lists.stateList.map((state, key) => {
194+
return (
195+
<Button
196+
className={
197+
currentStateSelected === state.status
198+
? 'btn btn-tabs btn-tabs-selected'
199+
: 'btn btn-tabs'
200+
}
201+
key={key}
202+
onClick={() => {
203+
selectState(state.status)
204+
setPage(1)
205+
}}
206+
>
207+
<i className='eos-icons'>{state.icon}</i>
208+
{state.status}
209+
</Button>
210+
)
211+
})}
212+
</div>
211213
</div>
212214

213215
<div className='roadmap-dropdown'>
@@ -280,5 +282,3 @@ const Stories = ({ authorId, followerId }) => {
280282
}
281283

282284
export default Stories
283-
284-
// flex flex-row flex-space-between rdmap

0 commit comments

Comments
 (0)