source: imaps-frontend/src/components/Toast/Toast.module.css

main
Last change on this file was 0c6b92a, checked in by stefan toskovski <stefantoska84@…>, 5 weeks ago

Pred finalna verzija

  • Property mode set to 100644
File size: 490 bytes
Line 
1.toast {
2 position: fixed;
3 bottom: 20px;
4 right: 20px;
5 padding: 10px 20px;
6 border-radius: 5px;
7 box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
8 cursor: pointer;
9 animation: fadeInOut 3s ease-in-out;
10 color: white;
11 font-size: 16px;
12}
13
14.toast.success {
15 background-color: #4caf50; /* Green for success */
16}
17
18.toast.error {
19 background-color: #f44336; /* Red for error */
20}
21
22@keyframes fadeInOut {
23 0%, 100% { opacity: 0; }
24 10%, 90% { opacity: 1; }
25}
Note: See TracBrowser for help on using the repository browser.