summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorPawel Zelawski <pawel.zelawski@outlook.com>2025-04-10 14:35:56 +0200
committerPawel Zelawski <pawel.zelawski@outlook.com>2025-04-10 14:35:56 +0200
commitd858bd4e0fc7aaba15509a17b35138e843667bc1 (patch)
treeb8251d1579bebe7128efe5b93ed734f9a75b234b /index.html
parente29a1b9a652fe254d13afef7f5c7a3d7a64b68cc (diff)
refactor: improve layout and spacing across all views
- Remove extra space at the top of the page by adjusting body and root styles - Add consistent 20px top padding to all views through app-container - Simplify layout structure by removing unnecessary flex containers - Adjust spacing between elements for better visual hierarchy: - Reduce gaps between elements from 1.5rem to 1rem - Reduce bottom margin of h1 from 1.5rem to 1rem - Remove negative margins and extra padding - Maintain consistent box dimensions (390px width, 560px height) for all views - Ensure proper spacing for QR code and other content within views
Diffstat (limited to 'index.html')
-rw-r--r--index.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..c6057da
--- /dev/null
+++ b/index.html
@@ -0,0 +1,12 @@
+<!doctype html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+ <title>DigiID-TS Demo</title>
+ </head>
+ <body>
+ <div id="root"></div>
+ <script type="module" src="/src/client/main.tsx"></script>
+ </body>
+</html> \ No newline at end of file