AykutSarac 2 лет назад
Родитель
Сommit
5c4500f01a
1 измененных файлов с 0 добавлено и 32 удалено
  1. 0 32
      src/components/Container/index.tsx

+ 0 - 32
src/components/Container/index.tsx

@@ -1,32 +0,0 @@
-import React from "react";
-import styled from "styled-components";
-
-interface ContainerProps {
-  reverse?: boolean;
-}
-
-const StyledContainer = styled.div<{ reverse: boolean }>`
-  display: flex;
-  justify-content: space-between;
-  gap: 50px;
-  align-items: center;
-  width: 80%;
-  margin: 0 auto 160px;
-  min-height: calc(100vh - 250px);
-  flex-direction: ${({ reverse }) => reverse && "row-reverse"};
-  line-height: 1.2;
-
-  @media only screen and (max-width: 768px) {
-    width: 100%;
-    flex-direction: column;
-    margin-bottom: 50px;
-    justify-content: center;
-  }
-`;
-
-export const Container: React.FC<React.PropsWithChildren<ContainerProps>> = ({
-  children,
-  reverse = false,
-}) => {
-  return <StyledContainer reverse={reverse}>{children}</StyledContainer>;
-};