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

Add text under login and favorites #603

Merged
merged 1 commit into from
Apr 23, 2024
Merged
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
2 changes: 2 additions & 0 deletions src/stories/Blocks/header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,13 @@ export const Header = (props: HeaderProps) => {
{signedIn && (
<span className="text-small-caption">{username}</span>
)}
{!signedIn && <span className="text-small-caption">Login</span>}
</a>
</div>
<div className="header__menu-bookmarked header__button">
<a href="/">
<HeartIcon aria-label="go to favorites list" />
<span className="text-small-caption">Liked</span>
</a>
</div>
</nav>
Expand Down
Loading