Skip to content

Commit 1f8ecf1

Browse files
authored
Accordian UI changes on Experience Page (#194)
1 parent 253c325 commit 1f8ecf1

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

src/containers/experienceAccordion/ExperienceAccordion.js

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,23 @@ class ExperienceAccordion extends Component {
1515
className="accord-panel"
1616
title={section["title"]}
1717
key={section["title"]}
18+
overrides={{
19+
Header: {
20+
style: () => ({
21+
backgroundColor: `${theme.body}`,
22+
border: `1px solid`,
23+
borderRadius: `5px`,
24+
borderColor: `${theme.headerColor}`,
25+
marginBottom: `3px`,
26+
fontFamily: "Google Sans Regular",
27+
}),
28+
},
29+
Content: {
30+
style: () => ({
31+
backgroundColor: `${theme.body}`,
32+
}),
33+
},
34+
}}
1835
>
1936
{section["experiences"].map((experience) => {
2037
return (

0 commit comments

Comments
 (0)