Skip to content

Commit

Permalink
update(ui): secondary theme color (accordproject#93)
Browse files Browse the repository at this point in the history
* update: development

Signed-off-by: Vinyl-Davyl <[email protected]>

* update: development

Signed-off-by: Vinyl-Davyl <[email protected]>

---------

Signed-off-by: Vinyl-Davyl <[email protected]>
  • Loading branch information
Vinyl-Davyl committed Aug 26, 2024
1 parent 56b134e commit 303b339
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
9 changes: 8 additions & 1 deletion src/AgreementHtml.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,14 @@ function AgreementHtml({ loading }: { loading: any }) {
alignItems: "center",
}}
>
<Spin indicator={<LoadingOutlined style={{ fontSize: 42 }} spin />} />
<Spin
indicator={
<LoadingOutlined
style={{ fontSize: 42, color: "#19c6c7" }}
spin
/>
}
/>
</div>
) : (
<div
Expand Down
9 changes: 7 additions & 2 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,15 @@ const CustomFooter: React.FC = () => {
</Link>
<Link href="https://discord.com/invite/Zm99SKhhtA" target="_blank">
<Button
type="primary"
shape="round"
size="large"
style={{ padding: "2px 24px" }}
style={{
padding: "5px 30px",
backgroundColor: "#19c6c7",
color: "#050c40",
textAlign: "center",
border: "none",
}}
>
Join
</Button>
Expand Down

0 comments on commit 303b339

Please sign in to comment.