diff options
| author | sD <stoned@derpymail.org> | 2020-02-15 22:38:02 +0100 |
|---|---|---|
| committer | sD <stoned@derpymail.org> | 2020-02-15 22:38:02 +0100 |
| commit | f2577419f6552f6f92ae6d4ee4501c198ba32fb5 (patch) | |
| tree | 5cc6508deaf645347febb1b0eeed4fe2e6dee61c | |
| parent | 471cce5bcb7c41c34849a608e541b7d84dc512c9 (diff) | |
center the loading box the same way i did it with the charselect
| -rw-r--r-- | webAO/styles/client.css | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/webAO/styles/client.css b/webAO/styles/client.css index 0c4d388..e76fb79 100644 --- a/webAO/styles/client.css +++ b/webAO/styles/client.css @@ -45,15 +45,15 @@ } #client_loading { - position: absolute; - display: flex; + display: block; flex-direction: column; - padding: 10px; - top: 50%; - left: 50%; - margin-right: -50%; - transform: translate(-50%, -50%); + position: fixed; + top: 30vh; + left: 30vw; + width: 40vw; + height: 15vh; justify-content: center; + text-align: center; align-items: center; background: black; color: lightgreen; |
