fix(repository): improve responsiveness of the Breadcrumb on "RepositoryDetailsView"@@ -1,5 +1,5 @@
{
- "_generatedAtUnix": 1664252697799,
+ "_generatedAtUnix": 1664253012527,
"_hashAlgorithm": "sha1",
"_version": 2,
"islands": {
@@ -96,7 +96,7 @@
"pathSource": "./app/views/repository/RepositoryCreateView.tsx"
},
"RepositoryDetailsView": {
- "hash": "1e140eff51739a6e55dd81727b5a132050a04de0",
+ "hash": "23f5df9b73ad8a5546578cf3ac6b8d1d1da0dc74",
"pathSource": "./app/views/repository/RepositoryDetailsView.tsx"
},
"RepositoryExploreView": {
@@ -63,7 +63,11 @@ const RepositoryDetailsView: ReactView<RepositoryDetailsViewProps> = ({
<PageWrapper>
<Grid.Col fluid>
<Grid.Row fluid alignItems={"center"}>
- <Grid.Col nowrap style={{ marginTop: 8, flex: 1 }}>
+ <Grid.Col
+ nowrap
+ flex={"1 0 468px"}
+ style={{ marginTop: 8, minWidth: 468 }}
+ >
<h1 style={{ margin: 0 }}>
<a href={`/${parentOrg.slug}`}>
{parentOrg.displayName || parentOrg.slug}
@@ -102,7 +106,7 @@ const RepositoryDetailsView: ReactView<RepositoryDetailsViewProps> = ({
)}
</div>
</Grid.Col>
- <Grid.Row nowrap style={{ minWidth: 90 }}>
+ <Grid.Row nowrap style={{ minWidth: 90, marginTop: 8 }}>
<span>{repo.forks.length}</span>
<a
href={`/${parentOrg.slug}/${repo.slug}/fork`}