0baf31d (parent 9a2e980)5/13/2026, 12:48:08 AM
fix(pulls): spacing
+ 2
- 1
app/components/PageHeader.tsx
@@ -152,6 +152,7 @@ export const PageHeader: VFC<PageHeaderProps & WithThemeSchemeProp> = ({
             href={buildRouteLink(AppRoute.THEME_SET_SCHEME_ACTION, {
               themeScheme: invertThemeScheme,
             })}
+            style={{ marginRight: 12 }}
           >
             {themeScheme === "light" ? (
               <MoonIcon

app/views/repositoryPullRequests/RepositoryPullRequestsView.tsx
@@ -156,7 +156,7 @@ const RepositoryPullRequestsView: ReactView<
             </a>
           </Grid.Row>
         </Grid.Col>
-        <Grid.Col fluid style={{ marginTop: 8 }}>
+        <Grid.Col fluid gap={4} style={{ marginTop: 12 }}>
           {pullRequests != null && pullRequests.length >= 1 ? (
             pullRequests.map((pr, idx) => (
               <Card