diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-01-27 00:16:07 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-01-27 00:16:07 -0600 |
commit | 99360f7bd90480b0c382014fa7d889aef8c433a4 (patch) | |
tree | 0e6d5f734097fcbc3a2c88e3ce43eed1f26eed69 /public/index.html | |
parent | 5961c268005eda9c37b26d48fe9f5ae2def9106e (diff) | |
download | voidsky-99360f7bd90480b0c382014fa7d889aef8c433a4.tar.zst |
Implement basic web composer
Diffstat (limited to 'public/index.html')
-rw-r--r-- | public/index.html | 23 |
1 files changed, 2 insertions, 21 deletions
diff --git a/public/index.html b/public/index.html index edc9d8e1a..59487592f 100644 --- a/public/index.html +++ b/public/index.html @@ -13,29 +13,10 @@ #app-root { display:flex; height:100%; } /* Remove focus state on inputs */ - input:focus { + input:focus, + textarea:focus { outline: 0; } - - /* These styles are for src/view/com/modals/WebModal */ - div[data-modal-overlay] { - position: fixed; - top: 0; - left: 0; - background: #0004; - width: 100vw; - height: 100vh; - } - div[data-modal-container] { - position: fixed; - top: 20vh; - left: calc(50vw - 300px); - width: 600px; - padding: 20px; - background: #fff; - border-radius: 10px; - box-shadow: 0 5px 10px #0005; - } </style> </head> <body> |