Skip to content

Commit d7f6043

Browse files
committed
📝 updating faq
1 parent 8a615d6 commit d7f6043

3 files changed

Lines changed: 18 additions & 7 deletions

File tree

config/content/faq.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
},
2626
{
2727
"question": "I can't or don't want to register online (technical issue, privacy issue, etc), can I still attend? Can I pay at the door?",
28-
"answer": "<span className='flex-override'>Yes! If you have an issue but still want to register early, please contact us at <a class='gold' href='mailto:info@kernelcon.org'>info@kernelcon.org</a>. We will be accepting cash at the door. Keep in mind that registering early guarantees you swag, that clothing is appropriate size, that workshops you want aren't full, etc.</span>"
28+
"answer": "<span className='flex-override'>Yes! If you have an issue but still want to register early, please contact us at <a href='mailto:info@kernelcon.org'>info@kernelcon.org</a>. We will be accepting cash at the door. Keep in mind that registering early guarantees you swag, that clothing is appropriate size, that workshops you want aren't full, etc.</span>"
2929
},
3030
{
3131
"question": "Does the payment name need to match the attendee name?",
@@ -37,7 +37,7 @@
3737
},
3838
{
3939
"question": "Do you offer a group discount?",
40-
"answer": "<span className='flex-override'>We do! Please contact <a class='gold' href='mailto:info@kernelcon.org'>info@kernelcon.org</a> for group orders of 10 or more!</span>"
40+
"answer": "<span className='flex-override'>We do! Please contact <a href='mailto:info@kernelcon.org'>info@kernelcon.org</a> for group orders of 10 or more!</span>"
4141
},
4242
{
4343
"question": "Do you offer CPEs?",
@@ -49,7 +49,7 @@
4949
},
5050
{
5151
"question": "Does Kernelcon provide American Sign Language (ASL) interpretation?",
52-
"answer": "Kernelcon does not currently offer on-site American Sign Language (ASL) interpretation or other scheduled sign-language services as a standard part of the event. We state that plainly so you can plan with accurate expectations not because access is unimportant to us, but because we do not want anyone to assume services we have not committed to providing.<p>If ASL interpretation or another accessibility-related accommodation would help you attend or participate, please email <a class='gold' href='mailto:info@kernelcon.org'>info@kernelcon.org</a> as early as you can. Describe what would help, and we will do our best to explore options and work with you to accommodate reasonable requests when possible. Advance notice matters: the more lead time we have, the more we may be able to arrange, though we cannot guarantee every request.</p>"
52+
"answer": "<p>Kernelcon does not currently offer on-site American Sign Language (ASL) interpretation or other scheduled sign-language services as a standard part of the event. We state that plainly so you can plan with accurate expectations - not because access is unimportant to us, but because we do not want anyone to assume services we have not committed to providing.<br><br>If ASL interpretation or another accessibility-related accommodation would help you attend or participate, please email <a href='mailto:info@kernelcon.org'>info@kernelcon.org</a> as early as you can. Describe what would help, and we will do our best to explore options and work with you to accommodate reasonable requests when possible. Advance notice matters: the more lead time we have, the more we may be able to arrange, though we cannot guarantee every request.</p>"
5353
},
5454
{
5555
"question": "How does Kernelcon ensure the health and safety of attendees?",

src/pages/About/About.scss

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
display: flex;
8686
font-size: 16px;
8787
font-weight: 300;
88-
align-items: center;
88+
align-items: flex-start;
8989
}
9090
.faq-q,
9191
.faq-a {
@@ -99,14 +99,25 @@
9999
padding-left: 10px;
100100
min-height: 30px;
101101
border-left: 3px solid $boston-blue;
102-
align-items: center;
103-
display: flex;
104102
ul {
105103
padding-left: 20px;
106104
}
107105
}
108106
.question {
109107
display: flex;
108+
align-items: center;
109+
}
110+
.answer {
111+
display: block;
112+
flex: 1;
113+
min-width: 0;
114+
a[href^='mailto:'] {
115+
color: $light-highlight;
116+
text-decoration: underline;
117+
}
118+
p {
119+
margin: 0;
120+
}
110121
}
111122
}
112123
}

src/pages/About/FAQ.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class FAQ extends Component {
4040
const answer = (
4141
<div className='faq-answer'>
4242
<span className='faq-a'>A</span>
43-
<span className='answer' dangerouslySetInnerHTML={{ __html: ele.answer }} />
43+
<div className='answer' dangerouslySetInnerHTML={{ __html: ele.answer }} />
4444
</div>
4545
);
4646

0 commit comments

Comments
 (0)