1
Fork 0
mirror of https://github.com/Steffo99/unisteffo.git synced 2024-11-22 16:04:21 +00:00

🔧 Fix a few css things

This commit is contained in:
Steffo 2021-02-02 17:08:20 +01:00
parent 33af587167
commit 7f92c506d8
Signed by: steffo
GPG key ID: 6965406171929D01
3 changed files with 3 additions and 4 deletions

View file

@ -1,5 +1,4 @@
.app {
padding: 4px;
min-width: calc(100vw - 8px);
min-height: calc(100vh - 8px);
}

View file

@ -6,8 +6,8 @@ export default function SelectSkin({skin, setSkin}) {
return (
<span>
<select value={skin} onChange={(event) => setSkin(event.target.value)}>
<option value={null}>Foglio di Carta</option>
<option value={"rygblue"}>Blu Reale</option>
<option value={null}>Foglio di carta</option>
<option value={"rygblue"}>Blu reale</option>
</select>
</span>
);

View file

@ -3,6 +3,6 @@ body {
}
#root {
min-width: 100vw;
max-width: 100vw;
min-height: 100vh;
}