Fixed background being black in OBS

This commit is contained in:
Liam 2022-10-03 08:07:49 +01:00
parent 632490d520
commit bec5e369ed
2 changed files with 3 additions and 6 deletions

@ -295,6 +295,7 @@ export default class Home extends Component {
render() { render() {
const { loading, isValidScoresaber, data } = this.state; const { loading, isValidScoresaber, data } = this.state;
// When in the main menu, show this colour so it's actually readable
if (!isValidScoresaber && !loading) { if (!isValidScoresaber && !loading) {
const body = document.body; const body = document.body;
body.style.backgroundColor = "#181a1b"; body.style.backgroundColor = "#181a1b";
@ -323,10 +324,6 @@ export default class Home extends Component {
<br /> <br />
<p>To use a option just add &key=value (eg: &songinfo=true)</p> <p>To use a option just add &key=value (eg: &songinfo=true)</p>
</div> </div>
<div className={'info'}>
<p>If you use this overlay and like it, don&apos;t forget to star the project :3</p>
<p>Github link: <span><a href={GITHUB_URL}>{GITHUB_URL}</a></span></p>
</div>
</div> </div>
</div> : </div> :
<div className={'overlay'}> <div className={'overlay'}>

@ -9,7 +9,7 @@
* when using OBS it overrides the background color anyway * when using OBS it overrides the background color anyway
*/ */
body, html { body, html {
background-color: black; background-color: transparent;
} }
.loading { .loading {
@ -37,7 +37,7 @@ body, html {
} }
.invalid-player p { .invalid-player p {
font-size: large; font-size: large !important;
color: white; color: white;
} }