diff --git a/apps/web/src/components/repo/commits-list.tsx b/apps/web/src/components/repo/commits-list.tsx index f78ca2e4..28d3325c 100644 --- a/apps/web/src/components/repo/commits-list.tsx +++ b/apps/web/src/components/repo/commits-list.tsx @@ -118,14 +118,14 @@ function BranchPicker({ }, [branches, defaultBranch, search]); return ( -
+
{open && ( <> @@ -136,7 +136,7 @@ function BranchPicker({ setSearch(""); }} /> -
+
@@ -253,14 +253,17 @@ function CommitsToolbar({ onClearDates: () => void; }) { return ( -
- -
+
+
+ +
+ +
- onSinceChange(e.target.value)} - title="Since date" - className="h-9 rounded-md border border-border bg-background px-3 font-mono text-xs text-muted-foreground focus:outline-none focus:ring-1 focus:ring-ring" - /> - onUntilChange(e.target.value)} - title="Until date" - className="h-9 rounded-md border border-border bg-background px-3 font-mono text-xs text-muted-foreground focus:outline-none focus:ring-1 focus:ring-ring" - /> - {hasDateFilter && ( - - )} + +
+ onSinceChange(e.target.value)} + title="Since date" + className="sm:order-3 flex-1 sm:flex-none h-9 rounded-md border border-border bg-background px-3 font-mono text-xs text-muted-foreground focus:outline-none focus:ring-1 focus:ring-ring" + /> + onUntilChange(e.target.value)} + title="Until date" + className="sm:order-4 flex-1 sm:flex-none h-9 rounded-md border border-border bg-background px-3 font-mono text-xs text-muted-foreground focus:outline-none focus:ring-1 focus:ring-ring" + /> + {hasDateFilter && ( + + )} +
); } @@ -462,7 +468,7 @@ function CommitRow({ {/* Expanded body */} {isExpanded && body && ( -
+
 						{body}
 					
diff --git a/apps/web/src/components/repo/tags-list.tsx b/apps/web/src/components/repo/tags-list.tsx index 76542398..bb4f5456 100644 --- a/apps/web/src/components/repo/tags-list.tsx +++ b/apps/web/src/components/repo/tags-list.tsx @@ -152,42 +152,48 @@ export function TagsList({ return (
- +
+ -
-
- - {tag.name} - - {release && - !release.draft && ( - <> - {release.prerelease ? ( - - - Pre-release - - ) : ( - - - {release.name || - release.tag_name} - - )} - - )} +
+
+ + { + tag.name + } + + {release && + !release.draft && ( + <> + {release.prerelease ? ( + + + Pre-release + + ) : ( + + + + {release.name || + release.tag_name} + + + )} + + )} +
+

+ {shortSha} +

-

- {shortSha} -

-
+
{release && (