toast.css 488 B

123456789101112131415161718192021222324252627282930313233
  1. .toast-container {
  2. position: fixed;
  3. top: 20px;
  4. right: 20px;
  5. z-index: 1000;
  6. display: flex;
  7. flex-direction: column;
  8. gap: 15px;
  9. }
  10. .toast {
  11. display: inline-block;
  12. margin-bottom: 5px;
  13. padding: 10px 20px;
  14. border-radius: 5px;
  15. box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  16. opacity: 0;
  17. transition: opacity 0.5s;
  18. }
  19. .toast.show {
  20. opacity: 1;
  21. }
  22. .toast.success {
  23. background-color: #51a351;
  24. color: white;
  25. }
  26. .toast.error {
  27. background-color: #bd362f;
  28. color: white;
  29. }