diff --git a/src/ui/App.css b/src/ui/App.css index 776442a..d187aa2 100644 --- a/src/ui/App.css +++ b/src/ui/App.css @@ -1,5 +1,16 @@ body { user-select: none; + height: 100vh; +} + +#root, .App { + height: 100%; +} + +.App { + background-image: url("https://webstatic.hoyoverse.com/upload/event/2020/11/04/7fd661b5184e1734f91f628b6f89a31f_7367318474207189623.png"); + background-repeat: no-repeat; + background-size: cover; } .TopButton { diff --git a/src/ui/App.tsx b/src/ui/App.tsx index 4dd5590..0fdfc75 100644 --- a/src/ui/App.tsx +++ b/src/ui/App.tsx @@ -1,15 +1,21 @@ import React from 'react' import logo from './logo.svg' import './App.css' +import './custom.css' // Major Components import Topbar from './components/TopBar' +import BigButton from './components/common/BigButton' + +function playGame() { + alert('cum') +} function App() { return (