Skip to content

Commit

Permalink
fix: ui, quill and switch mode button (#125)
Browse files Browse the repository at this point in the history
* fix: quill paste url model layout

* fix: switch mode button
  • Loading branch information
2nthony authored Aug 18, 2023
1 parent 48b33e8 commit 92f84a1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/StateToggle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const StateToggle = styled.div`
padding: 12px 16px;
/* padding-bottom: 13px; */
font-size: 14px;
line-height: 14px;
line-height: 1rem;
font-weight: 500;
cursor: pointer;
color: var(--textSecondary, #506176);
Expand Down
4 changes: 2 additions & 2 deletions src/components/modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const Title = styled(Flex)`
`;

const FormWrapper = styled.div`
padding: 0 24px 12px 24px;
padding: 0 24px;
label {
display: flex;
Expand Down Expand Up @@ -117,7 +117,7 @@ const SubmitButton = styled.button`
`;

const Hint = styled.p`
margin-top: 0;
margin-top: 0 !important;
padding: 0 24px;
font-family: Inter, sans-serif;
font-weight: 500;
Expand Down
4 changes: 3 additions & 1 deletion src/styles/subsqaure.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ const SubSquare = {
`,
tab: css`
padding: 12px 16px;
line-height: 14px;
line-height: 1rem;
margin-right: 1px;
/* border-bottom: none; */
color: var(--textSecondary, #506176);
Expand All @@ -57,6 +58,7 @@ const SubSquare = {
1px 0 0 0 var(--neutral300, #ebeef4);
}
:last-child {
margin-right: 0;
box-shadow: 0 1px 0 0 var(--neutral100, #ffffff),
1px 0 0 0 var(--neutral300, #ebeef4),
-1px 0 0 0 var(--neutral300, #ebeef4);
Expand Down

0 comments on commit 92f84a1

Please sign in to comment.