-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feat/ui/integration' into mock
- Loading branch information
Showing
19 changed files
with
327 additions
and
163 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
export function AlertIcon() { | ||
return ( | ||
<svg | ||
width="16" | ||
height="15" | ||
viewBox="0 0 16 15" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg"> | ||
<path | ||
d="M8.61704 1.27732L15.4045 13.1692C15.4671 13.2788 15.5 13.4031 15.5 13.5296C15.5 13.6561 15.4671 13.7804 15.4045 13.89C15.342 13.9995 15.2521 14.0905 15.1438 14.1538C15.0354 14.217 14.9126 14.2503 14.7875 14.2503H1.21251C1.08743 14.2503 0.964565 14.217 0.85625 14.1538C0.747935 14.0905 0.65799 13.9995 0.595455 13.89C0.532921 13.7804 0.499999 13.6561 0.5 13.5296C0.500001 13.4031 0.532924 13.2788 0.59546 13.1692L7.38295 1.27732C7.44549 1.16777 7.53544 1.07679 7.64375 1.01354C7.75207 0.950291 7.87493 0.916992 8 0.916992C8.12507 0.916992 8.24793 0.950291 8.35625 1.01354C8.46456 1.07679 8.55451 1.16777 8.61704 1.27732V1.27732ZM7.28748 10.6467V12.0882H8.71252V10.6467H7.28748ZM7.28748 5.60166V9.20527H8.71252V5.60166H7.28748Z" | ||
fill="#FFC800" | ||
/> | ||
</svg> | ||
); | ||
} |
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 |
---|---|---|
@@ -1,7 +1,83 @@ | ||
.connected-account { | ||
border-radius: 8px; | ||
border: 1px solid #96969633; | ||
border: 1px solid hsla(0, 0%, 59%, 0.2); | ||
|
||
main { | ||
flex: 1; | ||
} | ||
|
||
> footer { | ||
ul { | ||
display: flex; | ||
list-style-type: none; | ||
margin-top: 16px; | ||
border: 1px solid #96969633; | ||
background-color: #14141499; | ||
height: 24px; | ||
border-radius: 6px; | ||
|
||
li { | ||
flex: 1; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
font-family: Inter; | ||
font-size: 12px; | ||
font-weight: 500; | ||
line-height: 16px; | ||
text-align: left; | ||
color: #969696; | ||
|
||
&[aria-selected] { | ||
background: #2f2f2f; | ||
color: white; | ||
} | ||
} | ||
} | ||
|
||
button { | ||
background-color: #161616; | ||
border: 1px solid #96969633; | ||
height: 24px; | ||
width: 24px; | ||
border-radius: 6px; | ||
} | ||
|
||
> div { | ||
display: flex; | ||
align-items: center; | ||
justify-content: space-between; | ||
margin-top: 16px; | ||
} | ||
|
||
h6 { | ||
font-family: Inter; | ||
font-size: 14px; | ||
font-weight: 400; | ||
line-height: 20px; | ||
letter-spacing: -0.006em; | ||
text-align: left; | ||
color: #969696; | ||
} | ||
|
||
var { | ||
font-family: Inter; | ||
font-size: 18px; | ||
font-weight: 500; | ||
line-height: 24px; | ||
letter-spacing: -0.015em; | ||
text-align: left; | ||
color: white; | ||
font-style: normal; | ||
} | ||
|
||
small { | ||
font-family: Inter; | ||
font-size: 12px; | ||
font-weight: 500; | ||
line-height: 16px; | ||
text-align: left; | ||
color: #7d7d7d; | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
.progress-circle { | ||
border-radius: 50%; | ||
width: 48px; | ||
height: 48px; | ||
display: flex; | ||
background: #2f2f2f; | ||
|
||
background-image: | ||
-webkit-linear-gradient(90deg, #2f2f2f 50%, transparent 50%), | ||
-webkit-linear-gradient(270deg, var(--codex-color-primary) 50%, #2f2f2f 50%); | ||
background-image: linear-gradient(90deg, #2f2f2f 50%, transparent 50%), | ||
linear-gradient(270deg, var(--codex-color-primary) 50%, #2f2f2f 50%); | ||
|
||
div { | ||
border-radius: 50%; | ||
width: 36px; | ||
height: 36px; | ||
margin: auto; | ||
background: #232323; | ||
text-align: center; | ||
box-sizing: border-box; | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import "./ProgressCircle.css"; | ||
|
||
type Props = { | ||
value: number; | ||
}; | ||
|
||
export function ProgressCircle(_: Props) { | ||
return ( | ||
<div className="progress-circle"> | ||
<div></div> | ||
</div> | ||
); | ||
} |
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
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
Oops, something went wrong.