@@ -44,7 +44,7 @@ const Card = styled.div`
44
44
& : last-child {
45
45
margin : 1.5rem 0.5rem 0 0.5rem ;
46
46
}
47
- ` ) } //check props for button variations
47
+ ` ) }
48
48
` ;
49
49
50
50
const Title = styled . h2 `
@@ -57,29 +57,23 @@ const Title = styled.h2`
57
57
58
58
${ m . tablet ( css `
59
59
font-size : 2.25rem ;
60
- ` ) } //check props for button variations
60
+ ` ) }
61
61
` ;
62
62
63
63
const ContentWrapper = styled . div `
64
64
display : flex;
65
65
align-items : center;
66
-
67
- //check props for button variations
68
66
` ;
69
67
70
68
const ImageWrapper = styled . div `
71
69
width : 100% ;
72
70
height : 18rem ;
73
71
position : relative;
74
-
75
- //check props for button variations
76
72
` ;
77
73
78
74
const CardImage = styled ( Image ) `
79
75
border-radius: 0.25rem;
80
76
object-fit: cover;
81
-
82
- //check props for button variations
83
77
` ;
84
78
85
79
const TagContainer = styled . div `
@@ -123,14 +117,6 @@ const AboutUsContentWrapper = styled(ContentWrapper)`
123
117
` ;
124
118
125
119
//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
- ` ;
134
120
135
121
const ContactUsCard = styled ( Card ) `
136
122
height: 27rem;
@@ -141,15 +127,6 @@ const ContactUsCard = styled(Card)`
141
127
` ) }
142
128
` ;
143
129
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
-
153
130
const ContactUsCardImageWrapper = styled ( ImageWrapper ) `
154
131
width: auto;
155
132
position: relative;
@@ -159,27 +136,12 @@ const ContactUsCardImageWrapper = styled(ImageWrapper)`
159
136
margin-bottom: 3rem;
160
137
` ;
161
138
162
- const ContactUsCardImageCss = css `
163
- margin : 0 ;
164
- position : absolute;
165
- object-fit : contain !important ;
166
- ` ;
167
-
168
139
const ContactUsCardImage = styled ( Image ) `
169
140
margin: 0;
170
141
position: absolute;
171
142
object-fit: contain !important;
172
143
` ;
173
144
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
-
183
145
const Blog = styled ( Card ) `
184
146
margin: 1rem 0.5rem 0 0.5rem;
185
147
@@ -188,17 +150,6 @@ const Blog = styled(Card)`
188
150
` ) }
189
151
` ;
190
152
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
-
202
153
const BlogTitle = styled ( Title ) `
203
154
font-size: 1.3rem;
204
155
margin-bottom: 0.7rem;
@@ -210,10 +161,6 @@ const BlogTitle = styled(Title)`
210
161
` ) }
211
162
` ;
212
163
213
- const BlogImageWrapperCss = css `
214
- height : 12rem ;
215
- ` ;
216
-
217
164
const BlogImageWrapper = styled ( ImageWrapper ) `
218
165
height: 12rem;
219
166
` ;
0 commit comments