Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width,initial-scale=1.0">
  7. <title>example-app</title>
  8. <style>
  9. html,
  10. body {
  11. height: 100%;
  12. }
  13.  
  14. .centered {
  15. display: flex;
  16. justify-content: center;
  17. align-items: center;
  18. height: 100%;
  19. }
  20. </style>
  21. </head>
  22.  
  23. <body>
  24. <!-- NOTE: The 'centered' class will be removed after new Vue(...) -->
  25. <div id="app" class="centered">
  26. <img src="/static/loader.svg" alt="Loading...">
  27. </div>
  28. <!-- built files will be auto injected -->
  29. </body>
  30.  
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement