Skip to content

Commit

Permalink
Merge pull request #149 from alleslabs/feat/apply-new-branding
Browse files Browse the repository at this point in the history
Feat/apply new branding
  • Loading branch information
poomthiti committed Feb 2, 2023
2 parents c59f13e + edf0451 commit 6bbb62f
Show file tree
Hide file tree
Showing 134 changed files with 692 additions and 656 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Features

- [#149](https://github.com/alleslabs/celatone-frontend/pull/149) Apply new branding

- [#93](https://github.com/alleslabs/celatone-frontend/pull/93) Add filter code by instantiate permission in all codes page
- [#141](https://github.com/alleslabs/celatone-frontend/pull/141) Add 404 not found page, catch network params error
- [#134](https://github.com/alleslabs/celatone-frontend/pull/134) Fix un-align sub-page with sidebar
Expand Down
39 changes: 27 additions & 12 deletions public/celatone-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/favicon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion src/lib/app-fns/tx/common/sending.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const sendingTx = (fee: StdFee) => {
],
receiptInfo: {
header: "Sending Transaction",
headerIcon: <Spinner size="md" color="gray.400" />,
headerIcon: <Spinner size="md" color="pebble.600" />,
},
actionVariant: "sending",
} as TxResultRendering;
Expand Down
4 changes: 2 additions & 2 deletions src/lib/components/AccordionStepperItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const AccordionStepperItem = () => (
h="31px"
right="45%"
bottom="9px"
background="gray.600"
background="pebble.600"
position="absolute"
visibility="hidden"
zIndex={0}
Expand All @@ -18,7 +18,7 @@ export const AccordionStepperItem = () => (
borderRadius="full"
h="10px"
w="10px"
borderColor="gray.600"
borderColor="pebble.600"
borderWidth="1px"
position="relative"
zIndex={1}
Expand Down
11 changes: 6 additions & 5 deletions src/lib/components/ButtonCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,14 @@ export const ButtonCard = ({
align="center"
justify="space-between"
onClick={!disabled ? onClick : undefined}
bgColor="gray.900"
borderRadius="4px 4px 0 0"
bgColor="pebble.800"
borderRadius="8px"
w="100%"
cursor="pointer"
_hover={{ bgColor: "rgba(255, 255, 255, 0.15)" }}
_hover={{ bgColor: "pebble.700" }}
transition="all .25s ease-in-out"
_disabled={{
bgColor: "divider.main",
bgColor: "pebble.800",
cursor: "not-allowed",
}}
{...componentProps}
Expand All @@ -45,6 +46,6 @@ export const ButtonCard = ({
{description}
</Text>
</Stack>
<Icon as={MdChevronRight} color="gray.600" fontSize="28px" />
<Icon as={MdChevronRight} color="pebble.600" fontSize="28px" />
</Flex>
);
12 changes: 6 additions & 6 deletions src/lib/components/ConnectWalletAlert.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const ConnectWalletAlert = ({
return !address ? (
<Alert
{...alertProps}
variant="info"
variant="honeydew"
alignItems="center"
justifyContent="space-between"
py="12px"
Expand All @@ -43,20 +43,20 @@ export const ConnectWalletAlert = ({
<AlertIcon />
<Box>
<AlertTitle>
<Text variant="body1" fontWeight="600" color="info.main">
<Text variant="body1" fontWeight="600" color="honeydew.main">
{title}
</Text>
</AlertTitle>
<AlertDescription>
<Text variant="body2" color="info.main">
<Text variant="body2" color="honeydew.main">
{subtitle}
</Text>
</AlertDescription>
</Box>
</Flex>
<Button variant="ghost" gap={2} onClick={onClickConnect}>
<Icon as={MdLink} boxSize={4} color="info.main" />
<Text color="info.main">Connect Wallet</Text>
<Button variant="ghost-info" gap={2} onClick={onClickConnect}>
<Icon as={MdLink} boxSize={4} />
<Text color="honeydew.main">Connect Wallet</Text>
</Button>
</Alert>
) : null;
Expand Down
4 changes: 2 additions & 2 deletions src/lib/components/ContractCmdButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ export const ContractCmdButton = ({
return (
<Button
variant="outline-gray"
textColor="white"
fontSize="12px"
height="24px"
px="10px"
borderColor="rgba(255, 255, 255, 0.3)"
textColor="white"
borderColor="pebble.700"
borderRadius="16px"
fontWeight="400"
onClick={onClickCmd}
Expand Down
6 changes: 3 additions & 3 deletions src/lib/components/ContractSelectSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -165,9 +165,9 @@ export const ContractSelectSection = observer(
return (
<Flex
borderWidth="thin"
borderColor="gray.800"
borderColor="pebble.800"
p="16px"
borderRadius="4px"
borderRadius="8px"
fontSize="12px"
justify="space-between"
align="center"
Expand All @@ -188,7 +188,7 @@ export const ContractSelectSection = observer(
maxWidth="none"
/>
) : (
<Text textColor="text.disabled" variant="body2">
<Text color="text.disabled" variant="body2">
Not Selected
</Text>
)}
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/Copier.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const Copier = ({
label={copyLabel}
placement="top"
arrowSize={8}
bg="primary.dark"
bg="honeydew.darker"
>
<div>
<CopyIcon
Expand Down
Loading

2 comments on commit 6bbb62f

@vercel
Copy link

@vercel vercel bot commented on 6bbb62f Feb 2, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 6bbb62f Feb 2, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.