first commit
This commit is contained in:
commit
433c13f4ac
14 changed files with 1563 additions and 0 deletions
22
src/wordle/game.svelte
Normal file
22
src/wordle/game.svelte
Normal file
|
@ -0,0 +1,22 @@
|
|||
<script>
|
||||
import Keyboard from "./keyboard.svelte";
|
||||
import Display from "./display.svelte";
|
||||
</script>
|
||||
|
||||
<div id="root">
|
||||
<Display />
|
||||
<Keyboard />
|
||||
</div>
|
||||
|
||||
<style>
|
||||
#root {
|
||||
width: calc(50% - 40px);
|
||||
height: calc(100% - 75px);
|
||||
border-radius: 20px;
|
||||
margin: 20px;
|
||||
margin-top: 5px;
|
||||
border: 2px solid #444;
|
||||
|
||||
font-family: "JetBrains Mono", monospace;
|
||||
}
|
||||
</style>
|
Loading…
Add table
Add a link
Reference in a new issue