blurred backdrop for bottom section

This commit is contained in:
SpikeHD
2022-05-14 14:37:11 -07:00
parent f43cc3efc3
commit bab0ad08cb
7 changed files with 28 additions and 14 deletions

View File

@@ -80,12 +80,14 @@ class App extends React.Component<IProps, IState> {
this.state.optionsOpen ? <Options closeFn={() => this.setState({ optionsOpen: !this.state.optionsOpen })}/> : null
}
<ServerLaunchSection />
<div className="BottomSection">
<ServerLaunchSection />
<div id="DownloadProgress"
onClick={() => this.setState({ miniDownloadsOpen: !this.state.miniDownloadsOpen })}
>
<MainProgressBar downloadManager={downloadHandler} />
<div id="DownloadProgress"
onClick={() => this.setState({ miniDownloadsOpen: !this.state.miniDownloadsOpen })}
>
<MainProgressBar downloadManager={downloadHandler} />
</div>
</div>
</div>
)