thing.html 463 B

123456789101112131415161718192021
  1. <div id="bannerContainer">
  2. <div id="errorBanner">
  3. <style>
  4. #bannerContainer{
  5. display: flex;
  6. justify-content: center;
  7. width: 100vw;
  8. }
  9. #errorBanner{
  10. position: fixed;
  11. top: 10px;
  12. background: red;
  13. color: white;
  14. width: 50%;
  15. }
  16. </style>
  17. <h2>${message}</h2>
  18. </div>
  19. </div>