Skip to content

fix: hide default orange outline around gitify logo on first start #917

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

Merged
merged 1 commit into from
Mar 21, 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
2 changes: 1 addition & 1 deletion src/components/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const Sidebar: React.FC = () => {
<div className="flex flex-col fixed left-14 w-14 -ml-14 h-full bg-gray-sidebar overflow-y-auto ">
<div className="flex flex-col flex-1 items-center py-4">
<button
className="w-5 my-3 mx-auto cursor-pointer"
className="w-5 my-3 mx-auto cursor-pointer outline-none"
title="Open Gitify on GitHub"
onClick={onOpenBrowser}
data-testid="gitify-logo"
Expand Down
4 changes: 2 additions & 2 deletions src/components/__snapshots__/Sidebar.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ exports[`components/Sidebar.tsx should render itself & its children (logged in)
className="flex flex-col flex-1 items-center py-4"
>
<button
className="w-5 my-3 mx-auto cursor-pointer"
className="w-5 my-3 mx-auto cursor-pointer outline-none"
data-testid="gitify-logo"
onClick={[Function]}
title="Open Gitify on GitHub"
Expand Down Expand Up @@ -133,7 +133,7 @@ exports[`components/Sidebar.tsx should render itself & its children (logged out)
className="flex flex-col flex-1 items-center py-4"
>
<button
className="w-5 my-3 mx-auto cursor-pointer"
className="w-5 my-3 mx-auto cursor-pointer outline-none"
data-testid="gitify-logo"
onClick={[Function]}
title="Open Gitify on GitHub"
Expand Down