Skip to content

Commit cb74c95

Browse files
author
Poojan
committed
Removed comment
1 parent 4b20ddd commit cb74c95

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

client/modules/About/About.styles.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import styled, { createGlobalStyle } from 'styled-components';
22
import { remSize, prop } from '../../theme';
33

4-
// 1. Global style for the full page background
4+
55
export const GlobalStyle = createGlobalStyle`
66
html, body, #root {
77
background-color: ${prop('backgroundColor')};
@@ -15,7 +15,7 @@ export const GlobalStyle = createGlobalStyle`
1515
}
1616
`;
1717

18-
// 2. Page Content wrapper
18+
1919
export const AboutPageContent = styled.div`
2020
margin: ${remSize(42)} ${remSize(295)};
2121
background-color: ${prop('backgroundColor')};
@@ -30,7 +30,7 @@ export const AboutPageContent = styled.div`
3030
}
3131
`;
3232

33-
// 3. Intro section
33+
3434
export const Intro = styled.div`
3535
background-color: ${prop('backgroundColor')};
3636
color: ${prop('primaryTextColor')};
@@ -65,7 +65,7 @@ export const Intro = styled.div`
6565
}
6666
`;
6767

68-
// 4. Intro Headline
68+
6969
export const IntroHeadline = styled.div`
7070
display: flex;
7171
align-items: center;
@@ -95,7 +95,7 @@ export const IntroHeadline = styled.div`
9595
}
9696
`;
9797

98-
// 5. Intro Description
98+
9999
export const IntroDescription = styled.div`
100100
line-height: ${remSize(27)};
101101
font-size: ${remSize(16)};
@@ -109,7 +109,7 @@ export const IntroDescription = styled.div`
109109
}
110110
`;
111111

112-
// 6. Section Wrapper
112+
113113
export const Section = styled.div`
114114
margin: ${remSize(50)} 0;
115115
background-color: ${prop('backgroundColor')};
@@ -127,7 +127,7 @@ export const Section = styled.div`
127127
}
128128
`;
129129

130-
// 7. SectionContainer
130+
131131
export const SectionContainer = styled.div`
132132
display: flex;
133133
justify-content: row;
@@ -143,7 +143,7 @@ export const SectionContainer = styled.div`
143143
}
144144
`;
145145

146-
// 8. SectionItem
146+
147147
export const SectionItem = styled.div`
148148
width: 33%;
149149
display: flex;
@@ -191,7 +191,7 @@ export const SectionItem = styled.div`
191191
}
192192
`;
193193

194-
// 9. Contact Section
194+
195195
export const Contact = styled.div`
196196
margin-bottom: ${remSize(50)};
197197
background-color: ${prop('backgroundColor')};
@@ -212,7 +212,7 @@ export const Contact = styled.div`
212212
}
213213
`;
214214

215-
// 10. ContactTitle
215+
216216
export const ContactTitle = styled.p`
217217
width: 50%;
218218
color: ${prop('primaryTextColor')};
@@ -222,7 +222,7 @@ export const ContactTitle = styled.p`
222222
}
223223
`;
224224

225-
// 11. ContactHandles
225+
226226
export const ContactHandles = styled.p`
227227
width: 50%;
228228
color: ${prop('primaryTextColor')};
@@ -242,7 +242,7 @@ export const ContactHandles = styled.p`
242242
}
243243
`;
244244

245-
// 12. Footer
245+
246246
export const Footer = styled.div`
247247
border-top: 0.1rem dashed ${prop('primaryTextColor')};
248248
padding: 0 ${remSize(20)} ${remSize(70)} 0;

0 commit comments

Comments
 (0)