Skip to content

Commit

Permalink
(refactor) Fix Quit Atlassify Button Styling And Other Misc Changes
Browse files Browse the repository at this point in the history
Quit button had primary color as white which hid the cross icon inside it.
In the Login/Welcome page, updated margins of the text and icons row to be snug
Replaced Atlassian and Bell Icon logos with Atlas logo
  • Loading branch information
aravindparappil46 committed Sep 20, 2024
1 parent 1caff0c commit 0641fc0
Show file tree
Hide file tree
Showing 6 changed files with 61 additions and 96 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ I would like to acknowledge the following projects and resources that have inspi
[downloads-latest-badge]: https://img.shields.io/github/downloads/setchy/atlassify/latest/total?logo=github
[contributors-badge]: https://img.shields.io/github/contributors/setchy/atlassify?logo=github
[librariesio]: https://libraries.io/
[librariesio-badge]: https://img.shields.io/librariesio/github/setchy/atlasify?logo=librariesdotio
[librariesio-badge]: https://img.shields.io/librariesio/github/setchy/atlassify?logo=librariesdotio
[license]: LICENSE
[license-badge]: https://img.shields.io/github/license/setchy/atlassify?logo=github
[github-release-badge]: https://img.shields.io/github/v/release/setchy/atlassify?logo=github
Expand Down
6 changes: 1 addition & 5 deletions src/components/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -234,11 +234,7 @@ export const Sidebar: FC = () => {
<IconButton
label="Quit Atlassify"
icon={(iconProps) => (
<CrossCircleIcon
{...iconProps}
size="medium"
primaryColor="white"
/>
<CrossCircleIcon {...iconProps} size="medium" />
)}
shape="circle"
onClick={() => quitApp()}
Expand Down
32 changes: 16 additions & 16 deletions src/components/__snapshots__/AccountNotifications.test.tsx.snap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions src/components/__snapshots__/Sidebar.test.tsx.snap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 5 additions & 6 deletions src/routes/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { type FC, useContext, useEffect } from 'react';
import { useNavigate } from 'react-router-dom';

import Button from '@atlaskit/button/new';
import NotificationAllIcon from '@atlaskit/icon/glyph/notification-all';
import {
AtlasIcon,
AtlassianIcon,
BitbucketIcon,
CompassIcon,
Expand Down Expand Up @@ -31,15 +31,14 @@ export const LoginRoute: FC = () => {
return (
<div className="flex flex-1 flex-col items-center justify-center p-4">
<div>
<AtlassianIcon appearance="brand" size="xlarge" />{' '}
<NotificationAllIcon label="" size="xlarge" />
<AtlasIcon appearance="brand" size="xlarge" />{' '}
</div>

<div className="my-4 px-2.5 py-1.5 text-center font-semibold">
<div className="my-2 px-2.5 py-1.5 text-center font-semibold">
<div>
Atlassian Notifications <br /> on your menu bar.
Atlassian notifications <br /> on your menu bar
</div>
<div className="flex items-center justify-center gap-2">
<div className="my-2 flex items-center justify-center gap-2">
<BitbucketIcon size="small" appearance="neutral" />
<ConfluenceIcon size="small" appearance="neutral" />
<CompassIcon size="small" appearance="neutral" />
Expand Down
98 changes: 34 additions & 64 deletions src/routes/__snapshots__/Login.test.tsx.snap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0641fc0

Please sign in to comment.