We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a5c9f1 commit 3cbafc1Copy full SHA for 3cbafc1
client/src/components/landing/components/faq.tsx
@@ -15,7 +15,14 @@ const Faq = (): JSX.Element => {
15
const faqItems = t<string, string & FaqItem[]>('landing.faqs');
16
17
return (
18
- <Col sm={8} smOffset={2} xs={10} xsOffset={1}>
+ <Col
19
+ md={8}
20
+ mdOffset={2}
21
+ sm={10}
22
+ smOffset={1}
23
+ xs={12}
24
+ className='faq-section'
25
+ >
26
<h2 className='big-heading'>{t('landing.faq')}</h2>
27
<Spacer size='small' />
28
{faqItems.map((faq, i) => (
client/src/components/landing/landing.css
@@ -181,7 +181,8 @@ figcaption.caption {
181
padding: 4vw 15px;
182
}
183
184
-.certification-section {
+.certification-section,
185
+.faq-section {
186
padding-inline: 4vw;
187
188
0 commit comments