-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
51 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,54 +7,48 @@ export const styles = css` | |
font-weight: 500; | ||
src: url('https://fonts.googleapis.com/css2?family=Inter:[email protected]'); | ||
} | ||
.widgetContainer { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
gap: 16px; | ||
padding: 24px; | ||
width: 350px; | ||
height: 476px; | ||
padding: 24px; | ||
width: 350px; /* TODO: remove these hardcoded values */ | ||
height: 476px; /* TODO: ↑ */ | ||
border-radius: 12px; | ||
border: 1px solid var(--gray-100, #f3f4f6); | ||
background: #fff; | ||
border: 1px solid #f3f4f6; | ||
background-color: #fff; | ||
box-shadow: | ||
0px 4px 6px -1px rgba(0, 0, 0, 0.1), | ||
0px 2px 4px -1px rgba(0, 0, 0, 0.06); | ||
0 4px 6px -1px rgba(0, 0, 0, 0.1), | ||
0 2px 4px -1px rgba(0, 0, 0, 0.06); | ||
font-family: 'Bungee Spice'; | ||
font-family: Inter, sans-serif; | ||
} | ||
.switchNetwork { | ||
.connectAccount { | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: flex-end; | ||
color: var(--neutral-600, #525252); | ||
text-align: right; | ||
font-family: Inter; | ||
font-size: 14px; | ||
font-style: normal; | ||
font-weight: 500; | ||
line-height: 18px; | ||
} | ||
.switchNetwork > span:nth-child(2) { | ||
margin-left: 4px; | ||
align-items: center; | ||
gap: 4px; | ||
} | ||
.actionButton { | ||
display: flex; | ||
width: 314px; | ||
padding: 12px 20px; | ||
justify-content: center; | ||
align-items: center; | ||
gap: 8px; | ||
border-radius: 16px; | ||
background: var(--primary-300, #a5b4fc); | ||
color: #ffffff; | ||
border: none; | ||
font-family: Inter; | ||
background-color: #a5b4fc; | ||
color: #ffffff; | ||
width: 314px; /* TODO: remove these hardcoded values */ | ||
padding: 12px 20px; | ||
font-weight: 500; | ||
font-size: 16px; | ||
} | ||
|
@@ -64,24 +58,26 @@ export const styles = css` | |
} | ||
.actionButton:active { | ||
background: var(--primary-500-main, #6366f1); | ||
background-color: #6366f1; | ||
} | ||
.actionButtonReady { | ||
display: flex; | ||
width: 314px; | ||
padding: 12px 20px; | ||
justify-content: center; | ||
align-items: center; | ||
gap: 8px; | ||
width: 100%; | ||
padding: 12px 20px; | ||
border-radius: 16px; | ||
background: var(--primary-500-main, #6366f1); | ||
background-color: #6366f1; | ||
color: #ffffff; | ||
border: none; | ||
} | ||
.actionButtonReady:active { | ||
background: var(--primary-300, #a5b4fc); | ||
background-color: #a5b4fc; | ||
} | ||
.actionButtonReady:hover { | ||
|
@@ -90,12 +86,12 @@ export const styles = css` | |
.poweredBy { | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: flex-start; | ||
margin-top: 16px; | ||
} | ||
align-items: center; | ||
gap: 6px; | ||
align-self: flex-start; | ||
.poweredBy > span:nth-child(2) { | ||
margin-left: 6px; | ||
color: #525252; | ||
font-size: 12px; | ||
line-height: 150%; | ||
} | ||
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters