Skip to content

Commit

Permalink
fix styles
Browse files Browse the repository at this point in the history
  • Loading branch information
yuriy committed Oct 30, 2020
1 parent f5774ce commit 2c3556d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/pages/FAQ/faq-styles.styl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.faqContainer {
.item {
margin-bottom 15px;
margin-bottom 16px;

.label {
}
Expand All @@ -10,7 +10,7 @@
margin-left 30px

.text {
color black
color #212D5E;
line-height 25px
margin 5px 0

Expand Down
2 changes: 1 addition & 1 deletion src/pages/FAQ/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ export const FAQPage = () => {
FAQ
</Title>
</Box>
<Box style={{ background: 'white' }} pad="large">
<Box style={{ background: 'white', borderRadius: 5 }} pad="xlarge">
{faqConfig.map((item, idx) => {
const isExpanded = expandedIdxs.includes(idx);

Expand Down
7 changes: 5 additions & 2 deletions src/pages/Info/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,12 @@ export const InfoPage = () => {
{'Ethereum <> Harmony Bridge'}
</Title>
</Box>
<div style={{ background: 'white' }}>
<Box
style={{ background: 'white', borderRadius: 5 }}
pad={{ bottom: 'medium' }}
>
<Info title="" />
</div>
</Box>
</Box>
</PageContainer>
</BaseContainer>
Expand Down

0 comments on commit 2c3556d

Please sign in to comment.