diff --git a/src/components/MetaBar.tsx b/src/components/MetaBar.tsx
index d3eabcc..2c70cb3 100644
--- a/src/components/MetaBar.tsx
+++ b/src/components/MetaBar.tsx
@@ -1,4 +1,5 @@
-import { Breadcrumb } from '@primer/components'
+import { BranchName, Breadcrumb, Flex, Grid, Text } from '@primer/components'
+import { GitBranchIcon } from '@primer/octicons-react'
import * as React from 'react'
type Props = {
@@ -7,14 +8,21 @@ type Props = {
export function MetaBar({ metaData: { userName, repoName, branchName, repoUrl, userUrl } }: Props) {
return (
-
+
{userName}
-
- {repoName}
+
+ {repoName}
- {branchName}
-
+
+
+
+
+
+ {branchName}
+
+
+
)
}
diff --git a/src/content.scss b/src/content.scss
index e48bae5..b04791c 100644
--- a/src/content.scss
+++ b/src/content.scss
@@ -278,13 +278,11 @@ $minimal-z-index: max($github-header-z-index, $github-pull-request-float-header-
.meta-bar {
position: relative; // prevent overlap by outline of other elements
- padding: 10px;
+ height: 53px; // GitHub header height if login
+ flex-shrink: 0;
+ padding: 4px 10px;
padding-right: 30px; // space for toggle button
background: $bg-blue-light;
-
- .repo-name {
- font-weight: bolder;
- }
}
.description {