Skip to content

Commit

Permalink
Merge pull request #118 from itsarraj/master
Browse files Browse the repository at this point in the history
fix: basic enhancement|| Added PaddingBottom to  UI to enhance it's UX
  • Loading branch information
leecalcote authored Jul 4, 2023
2 parents 9abad6c + 0a8ab23 commit df35f77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions site/src/components/Faq/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
OpenIcon,
CloseIcon
} from "../../reusecore/Accordion";

const Faq = (props) => {
let faq_keys = [];
let faqs_data = [];
Expand Down Expand Up @@ -44,7 +44,7 @@ const Faq = (props) => {
<Accordion allowMultipleExpanded="true" allowZeroExpanded="true">
{faq_keys.map((key) => (
<>
<h2 className="category_name">{key}</h2>
<h2 className="category_name" style={{ paddingBottom: 25 }} >{key}</h2>
{faqs[key].map((faq, index) => (
<AccordionItem key={index}>
<AccordionTitle>
Expand Down

0 comments on commit df35f77

Please sign in to comment.