EscolaLMS/Front

View on GitHub
src/components/Events/Event/EventContainer/EventContainerStyles.ts

Summary

Maintainability
A
1 hr
Test Coverage
import styled from "styled-components";

export const EventContainerStyles = styled.div`
  section {
    margin-bottom: 45px;
    &.with-border {
      padding-bottom: 45px;
      border-bottom: 1px solid
        ${({ theme }) => (theme.mode === "dark" ? theme.gray1 : theme.gray5)};
    }
    &.padding-right {
      padding-right: 150px;
      @media (max-width: 991px) {
        padding-right: 70px;
      }
      @media (max-width: 768px) {
        padding-right: 0;
      }
    }
  }
`;