WIP CSS cleanup (some things broken atm)

This commit is contained in:
David Ralph
2020-12-05 16:25:49 +00:00
parent 88e54ad26a
commit 11b82fe944
14 changed files with 59 additions and 202 deletions

View File

@@ -38,7 +38,7 @@ export default class View extends React.PureComponent {
render() {
if (localStorage.getItem('view') === 'false' || localStorage.getItem('background') === 'false') return null;
return <div className='view'>
<FullscreenIcon id='viewButton' onClick={() => this.viewStuff()} />
<FullscreenIcon onClick={() => this.viewStuff()} />
</div>
}
}