Skip to content

Commit a0f1982

Browse files
committed
fix(web): header-alignment
1 parent f69d4bb commit a0f1982

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

web/src/pages/Resolver/index.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ const Wrapper = styled.div`
3636
const Container = styled.div`
3737
display: flex;
3838
flex-direction: column;
39+
gap: 32px;
3940
width: 100%;
4041
background-color: ${({ theme }) => theme.lightBackground};
4142
padding: ${responsiveSize(24, 32)};
@@ -78,7 +79,7 @@ const MiddleContentContainer = styled.div`
7879
`;
7980

8081
const Heading = styled.h1`
81-
margin: 0 0 0 32px;
82+
margin: 0;
8283
font-size: 24px;
8384
font-weight: 600;
8485
color: ${({ theme }) => theme.primaryText};
@@ -87,7 +88,7 @@ const Heading = styled.h1`
8788

8889
const Paragraph = styled.p`
8990
padding: 0;
90-
margin-bottom: 32px;
91+
margin: 0;
9192
font-size: 16px;
9293
text-align: center;
9394
color: ${({ theme }) => theme.secondaryText};

0 commit comments

Comments
 (0)