diff options
author | Alexander Neonxp Kiryukhin <i@neonxp.ru> | 2024-08-18 13:29:54 +0300 |
---|---|---|
committer | Alexander Neonxp Kiryukhin <i@neonxp.ru> | 2024-08-18 13:29:54 +0300 |
commit | fd70f95224374d23157ee7c0357733102cd0df53 (patch) | |
tree | e490c12e021cedaf211b292d5d623baa32a673fc /web/index.html |
Diffstat (limited to 'web/index.html')
-rw-r--r-- | web/index.html | 26 |
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 |