Skip to content

Commit

Permalink
fix: sw bar position
Browse files Browse the repository at this point in the history
  • Loading branch information
dsrkafuu committed Nov 5, 2024
1 parent a715083 commit 2f11abe
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,19 @@ function App() {
</div>
)}
</div>
{layoutMode === 'reverse' && (
<div className='container'>
<SW />
</div>
)}
<div className='container' style={opacityStyle}>
<Encounter />
</div>
<div className='container'>
<SW />
</div>
{layoutMode !== 'reverse' && (
<div className='container'>
<SW />
</div>
)}
<div className='container'>
<Settings />
</div>
Expand Down

0 comments on commit 2f11abe

Please sign in to comment.