diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2017-06-04 17:30:25 -0400 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2017-06-04 17:30:25 -0400 |
| commit | 3064af9ad34c606ac199369bfe86346d00471fac (patch) | |
| tree | b432cac458c9734fb492743800065d2eb3d19f35 /client/web/templates/index.ejs | |
| parent | 85968a3a6bc5737715ed34fba942153174d2c993 (diff) | |
bonkers scroll bugs
Diffstat (limited to 'client/web/templates/index.ejs')
| -rw-r--r-- | client/web/templates/index.ejs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/client/web/templates/index.ejs b/client/web/templates/index.ejs index bf8ba57..02b375c 100644 --- a/client/web/templates/index.ejs +++ b/client/web/templates/index.ejs @@ -24,9 +24,15 @@ svg { -moz-user-select: none; user-select: none; } +body { + transition: opacity 200ms; +} +.loading { + opacity: 0; +} </style> </head> - <body> + <body class='loading'> <div id="react-root"></div> </body> <script src="https://www.youtube.com/iframe_api"></script> |
