Skip to content

Commit 2478f5d

Browse files
committed
fix: Making phone number visible.
1 parent 9f2d4a2 commit 2478f5d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/pages/faq.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,9 @@ function FaqPage({data}) {
170170
</Obfuscate>
171171
</li>
172172
<li>
173-
<Obfuscate tel={`${config.phoneContact}`} className="button fit">
174-
{t('cta:buttons.call')}
173+
<Obfuscate tel={`${config.phoneContact}`} style={{height: "auto"}} className="button fit">
174+
<p style={{margin: 0}}>{t('cta:buttons.call')}</p>
175+
<p style={{margin: 0, opacity: .5, marginTop: "-15px"}}>{config.phoneContact.toString()}</p>
175176
</Obfuscate>
176177
</li>
177178
</ul>

0 commit comments

Comments
 (0)