fix window functions

This commit is contained in:
SpikeHD 2022-05-08 19:57:10 -07:00
parent 34f1662a51
commit 64cac750f9
4 changed files with 5 additions and 3 deletions

View File

@ -12,6 +12,9 @@
},
"tauri": {
"allowlist": {
"window": {
"all": true
},
"fs": {
"scope": [
"$DATA",

View File

@ -21,7 +21,6 @@ function App() {
<Topbar />
<div id="playButtons">
<BigButton text="PLAY DA GAME :D" onClick={playGame} id="officialPlay" />
<BigButton text="PLAY PRIV GAME :D" onClick={playGame} id="privatePlay" />
</div>
</div>
)

View File

@ -4,7 +4,7 @@
align-items: center;
justify-content: space-between;
width: 100%;
height: 34px;
height: 30px;
background-color: #141414;
z-index: 1;
color: #fff;

View File

@ -1,6 +1,6 @@
#playButtons {
display: flex;
flex-direction: row;
flex-direction: row-reverse;
align-items: center;
justify-content: space-between;