Skip to content

Commit

Permalink
Dropdown component (#168)
Browse files Browse the repository at this point in the history
* initial dropdown component

* add menu button to header and adjust header css to center it in screen with flexible size

* vertically center header items

* adjust css of dropdown menu content margin to move away from screen edge

* bump vitest and vite development dependencies

* modify chunk size warning limit to 700 kb
  • Loading branch information
dpgraham4401 authored Sep 17, 2024
1 parent a769305 commit bbc4593
Show file tree
Hide file tree
Showing 8 changed files with 1,131 additions and 227 deletions.
19 changes: 9 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>The Manifest Game</title>
</head>
<body
class="h-full w-full bg-white antialiased dark:bg-white">
<div class="w-screen h-screen" id="root"></div>
<script src="/src/index.tsx" type="module"></script>
</body>
<head>
<meta charset="UTF-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>The Manifest Game</title>
</head>
<body>
<div class="h-screen w-screen antialiased dark:bg-white" id="root"></div>
<script src="/src/index.tsx" type="module"></script>
</body>
</html>
Loading

0 comments on commit bbc4593

Please sign in to comment.