Skip to content

Commit 16b0fff

Browse files
authored
Merge branch 'main' into feat/color-scheme
2 parents d208ee0 + 3cd267a commit 16b0fff

File tree

7 files changed

+29
-128
lines changed

7 files changed

+29
-128
lines changed

src/renderer/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export const App = () => {
4747
<BaseStyles>
4848
<AppProvider>
4949
<Router>
50-
<div className="flex h-full overflow-x-hidden overflow-y-auto flex-col pl-12 bg-gitify-background">
50+
<div className="flex h-full overflow-x-hidden overflow-y-auto flex-col pl-10 bg-gitify-background">
5151
<Loading />
5252
<Sidebar />
5353
<Routes>

src/renderer/components/Sidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export const Sidebar: FC = () => {
7474
<Stack
7575
direction="vertical"
7676
justify="space-between"
77-
className="fixed left-12 -ml-12 w-12 h-full bg-gitify-sidebar text-white"
77+
className="fixed left-10 -ml-10 w-10 h-full bg-gitify-sidebar text-white"
7878
>
7979
<Stack
8080
direction="vertical"

src/renderer/components/__snapshots__/Sidebar.test.tsx.snap

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/renderer/components/notifications/NotificationFooter.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,9 @@ export const NotificationFooter: FC<INotificationFooter> = ({
5353
)}
5454

5555
<Stack direction="horizontal" gap="none">
56-
<Text title={reason.description}>{reason.title}</Text>
57-
<Text className="px-1">&bull;</Text>
56+
<Text title={reason.description} className="pr-1">
57+
{reason.title}
58+
</Text>
5859
<RelativeTime datetime={notification.updated_at} />
5960
</Stack>
6061

src/renderer/components/notifications/__snapshots__/AccountNotifications.test.tsx.snap

Lines changed: 4 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/renderer/components/notifications/__snapshots__/NotificationFooter.test.tsx.snap

Lines changed: 10 additions & 60 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)