Properly fullscreen

This commit is contained in:
Gwilym Inzani 2023-07-05 12:04:27 +01:00 committed by Corwin
parent 683afbf133
commit 91dfb63fbd
No known key found for this signature in database
3 changed files with 17 additions and 2 deletions

View file

@ -21,6 +21,11 @@ const ActionButton = styled.button`
margin-top: 20px; margin-top: 20px;
`; `;
const AppContainer = styled.main`
height: calc(100vh - 20px);
padding: 10px;
`;
function App() { function App() {
const [{ volume, bindings }, setState] = useLocalStorage( const [{ volume, bindings }, setState] = useLocalStorage(
{ volume: 1.0, bindings: DefaultBindingsSet() }, { volume: 1.0, bindings: DefaultBindingsSet() },
@ -43,7 +48,7 @@ function App() {
}); });
return ( return (
<div> <AppContainer>
{showBindings && ( {showBindings && (
<BindingsWindow <BindingsWindow
bindings={bindings} bindings={bindings}
@ -62,7 +67,7 @@ function App() {
controls={bindings.Actual} controls={bindings.Actual}
paused={paused} paused={paused}
/> />
</div> </AppContainer>
); );
} }

View file

@ -0,0 +1,8 @@
import { createGlobalStyle } from "styled-components";
export const GlobalStyle = createGlobalStyle`
body {
margin: 0;
padding: 0;
}
`;

View file

@ -1,6 +1,7 @@
import React from "react"; import React from "react";
import ReactDOM from "react-dom/client"; import ReactDOM from "react-dom/client";
import App from "./App"; import App from "./App";
import { GlobalStyle } from "./globalStyles";
const root = ReactDOM.createRoot( const root = ReactDOM.createRoot(
document.getElementById("root") as HTMLElement document.getElementById("root") as HTMLElement
@ -8,6 +9,7 @@ const root = ReactDOM.createRoot(
root.render( root.render(
<React.StrictMode> <React.StrictMode>
<GlobalStyle />
<App /> <App />
</React.StrictMode> </React.StrictMode>
); );