File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ const Issue = ({ issue }: IssueProps) => {
21
21
issue
22
22
)
23
23
return (
24
- < Card classes = "w-96 flex flex-col p-6" >
24
+ < Card classes = "w-full flex flex-col p-6" >
25
25
< a href = { data . url } target = "_blank" rel = "noopener noreferrer" >
26
26
< div className = "flex flex-row" >
27
27
< img
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ const IssuesFromLastRepo = ({ user }: IssuesFromLastRepoProps) => {
14
14
fragment IssuesFromLastRepo on User
15
15
@refetchable(queryName: "IssuesFromLastRepo_Query")
16
16
@argumentDefinitions(
17
- count: { type: "Int", defaultValue: 2 }
17
+ count: { type: "Int", defaultValue: 4 }
18
18
cursor: { type: "String" }
19
19
) {
20
20
issuesFromLastRepo(first: $count, after: $cursor)
@@ -45,7 +45,7 @@ const IssuesFromLastRepo = ({ user }: IssuesFromLastRepoProps) => {
45
45
46
46
const handleScrollRight = ( ) => {
47
47
if ( hasNext ) {
48
- loadNext ( 2 )
48
+ loadNext ( 4 )
49
49
}
50
50
scrollHorizontally ( scrollDirection . Right )
51
51
}
@@ -63,7 +63,7 @@ const IssuesFromLastRepo = ({ user }: IssuesFromLastRepoProps) => {
63
63
< h3 className = "font-bold text-gray-500 text-lg" > Issues from last repo</ h3 >
64
64
< div className = "flex" >
65
65
< div
66
- className = "grid grid-rows-2 grid-flow-col gap-4 flex-1 overflow-x-auto no-scrollbar scroll-smooth"
66
+ className = "grid grid-rows-2 grid-flow-col gap-4 flex-1 overflow-x-auto auto-cols-max no-scrollbar scroll-smooth"
67
67
ref = { scrollableElement }
68
68
>
69
69
{ data . issuesFromLastRepo . edges . map (
You can’t perform that action at this time.
0 commit comments