Skip to content
Snippets Groups Projects
_toast.scss 381 B
Newer Older
  • Learn to ignore specific revisions
  • Guilhem CARRON's avatar
    Guilhem CARRON committed
    @import 'config/colors';
    
    
    .Toastify__toast {
      background: #fafafa !important;
    }
    .Toastify__toast--success {
      .toastBody {
        color: #73a839;
      }
      .toastProgress {
        background: #73a839 !important;
      }
    }
    
    .Toastify__toast--error {
      .toastBody {
        color: #c71c22;
      }
      .toastProgress {
        background: #c71c22 !important;
      }
    }
    
    Guilhem CARRON's avatar
    Guilhem CARRON committed
    .toastBody {
      font-size: 1rem !important;
    }