summaryrefslogtreecommitdiff
path: root/web/index.html
diff options
context:
space:
mode:
authorAlexander Neonxp Kiryukhin <i@neonxp.ru>2024-08-18 13:29:54 +0300
committerAlexander Neonxp Kiryukhin <i@neonxp.ru>2024-08-18 13:29:54 +0300
commitfd70f95224374d23157ee7c0357733102cd0df53 (patch)
treee490c12e021cedaf211b292d5d623baa32a673fc /web/index.html
initialHEADmaster
Diffstat (limited to 'web/index.html')
-rw-r--r--web/index.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/web/index.html b/web/index.html
new file mode 100644
index 0000000..75edeb1
--- /dev/null
+++ b/web/index.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <style>
+ html,body, #root {height: 100%; margin: 0; padding: 0;}
+ body {overflow: hidden;}
+ #app {display: flex;}
+ .container {
+ display: grid;
+ width: 100%;
+ grid-template-columns: 2fr 1fr;
+ grid-template-rows: 1fr;
+ gap: 0px 0px;
+ grid-template-areas: ". .";
+ }
+ .list {
+ height: 100vh;
+ overflow-y: scroll;
+ }
+ </style>
+ </head>
+ <body>
+ <div id="app"></div>
+ <script type="module" src="/dist/index.js"></script>
+ </body>
+</html> \ No newline at end of file