tieme-ndo/frontend

View on GitHub
src/components/common/Toast/StyledToastContainer.js

Summary

Maintainability
A
0 mins
Test Coverage
import { ToastContainer } from 'react-toastify';
import styled from 'styled-components';

export const StyledToastContainer = styled(ToastContainer)`
  &.Toastify__toast-container {
    top: 64px;
    .Toastify__toast {
      border-radius: 4px;
    }
  }
`;