Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CFE-519]: Refactor(pages) - remove overview text from landing page title #973

Merged
merged 2 commits into from
Jun 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Improvements

- [#973](https://github.com/alleslabs/celatone-frontend/pull/973) Remove overview text from landing page title
- [#967](https://github.com/alleslabs/celatone-frontend/pull/967) Utilize consensus address for better consistency
- [#963](https://github.com/alleslabs/celatone-frontend/pull/963) Add separator between token in tx message
- [#959](https://github.com/alleslabs/celatone-frontend/pull/959) Update @cosmos-kit/react to v2.15.0 and friends
Expand Down
7 changes: 2 additions & 5 deletions src/lib/pages/home/lite.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,8 @@ export const HomeLite = () => {
borderBottom={{ base: "1px solid", md: "0px" }}
borderColor="gray.700"
>
<Heading as="h4" variant="h4">
<Text as="span" color="accent.main">
{prettyName}
</Text>{" "}
Overview
<Heading as="h4" variant="h4" color="accent.main">
{prettyName}
</Heading>
<Flex
alignItems={{ base: "start", md: "end" }}
Expand Down
Loading