Skip to content

Commit c230820

Browse files
committed
remove commented out and dead code
1 parent cde3791 commit c230820

File tree

3 files changed

+2
-59
lines changed

3 files changed

+2
-59
lines changed

components/containers/Card/styles.js

Lines changed: 2 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const Card = styled.div`
4444
&:last-child {
4545
margin: 1.5rem 0.5rem 0 0.5rem;
4646
}
47-
`)} //check props for button variations
47+
`)}
4848
`;
4949

5050
const Title = styled.h2`
@@ -57,29 +57,23 @@ const Title = styled.h2`
5757
5858
${m.tablet(css`
5959
font-size: 2.25rem;
60-
`)}//check props for button variations
60+
`)}
6161
`;
6262

6363
const ContentWrapper = styled.div`
6464
display: flex;
6565
align-items: center;
66-
67-
//check props for button variations
6866
`;
6967

7068
const ImageWrapper = styled.div`
7169
width: 100%;
7270
height: 18rem;
7371
position: relative;
74-
75-
//check props for button variations
7672
`;
7773

7874
const CardImage = styled(Image)`
7975
border-radius: 0.25rem;
8076
object-fit: cover;
81-
82-
//check props for button variations
8377
`;
8478

8579
const TagContainer = styled.div`
@@ -123,14 +117,6 @@ const AboutUsContentWrapper = styled(ContentWrapper)`
123117
`;
124118

125119
//Contact Us Cards Varients
126-
const ContactUsCardsCss = css`
127-
height: 27rem;
128-
background-color: ${$white};
129-
130-
${m.desktop(css`
131-
height: 25rem;
132-
`)}
133-
`;
134120

135121
const ContactUsCard = styled(Card)`
136122
height: 27rem;
@@ -141,15 +127,6 @@ const ContactUsCard = styled(Card)`
141127
`)}
142128
`;
143129

144-
const ContactUsCardImageWrapperCss = css`
145-
width: auto;
146-
position: relative;
147-
height: 5rem;
148-
margin-right: 75%;
149-
margin-top: 3rem;
150-
margin-bottom: 3rem;
151-
`;
152-
153130
const ContactUsCardImageWrapper = styled(ImageWrapper)`
154131
width: auto;
155132
position: relative;
@@ -159,27 +136,12 @@ const ContactUsCardImageWrapper = styled(ImageWrapper)`
159136
margin-bottom: 3rem;
160137
`;
161138

162-
const ContactUsCardImageCss = css`
163-
margin: 0;
164-
position: absolute;
165-
object-fit: contain !important;
166-
`;
167-
168139
const ContactUsCardImage = styled(Image)`
169140
margin: 0;
170141
position: absolute;
171142
object-fit: contain !important;
172143
`;
173144

174-
//Blog Varients
175-
const BlogCss = css`
176-
margin: 1rem 0.5rem 0 0.5rem;
177-
178-
${m.tablet(css`
179-
height: 40rem;
180-
`)}
181-
`;
182-
183145
const Blog = styled(Card)`
184146
margin: 1rem 0.5rem 0 0.5rem;
185147
@@ -188,17 +150,6 @@ const Blog = styled(Card)`
188150
`)}
189151
`;
190152

191-
const BlogTitleCss = css`
192-
font-size: 1.3rem;
193-
margin-bottom: 0.7rem;
194-
max-height: 7rem;
195-
overflow: hidden;
196-
197-
${m.tablet(css`
198-
font-size: 1.3rem;
199-
`)}
200-
`;
201-
202153
const BlogTitle = styled(Title)`
203154
font-size: 1.3rem;
204155
margin-bottom: 0.7rem;
@@ -210,10 +161,6 @@ const BlogTitle = styled(Title)`
210161
`)}
211162
`;
212163

213-
const BlogImageWrapperCss = css`
214-
height: 12rem;
215-
`;
216-
217164
const BlogImageWrapper = styled(ImageWrapper)`
218165
height: 12rem;
219166
`;

components/containers/Wrapper/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// import wrapperStyles from '@/styles/Wrapper.module.scss';
21
import S from './styles';
32

43
export default function Wrapper({ customClass, children }) {

components/layout/Nav/styles.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
// @use './variables' as *;
2-
// @use './mixins' as *;
3-
41
import styled, { css } from 'styled-components';
52
import * as m from '@/styles/_mixins';
63
import {

0 commit comments

Comments
 (0)