@@ -35,7 +35,7 @@ const openState = reactive<Record<string, boolean>>({})
35
35
<div >
36
36
<form @submit.prevent =" () => refresh()" >
37
37
<div class =" flex gap-2 items-center" >
38
- <h2 class =" text-base font-normal" >
38
+ <h2 class =" text-base my-3 font-normal" >
39
39
{{ selectedRepo }}
40
40
</h2 >
41
41
<button
@@ -50,7 +50,7 @@ const openState = reactive<Record<string, boolean>>({})
50
50
<span class =" sr-only" >refresh data</span >
51
51
</button >
52
52
</div >
53
- <label class =" w-full border-solid border border-gray-600 rounded-md flex flex-row items-center relative" >
53
+ <label class =" w-full text-xs border-solid border border-gray-600 rounded-md flex flex-row items-center relative" >
54
54
<span class =" sr-only" >pick a repository to cluster issues</span >
55
55
<select
56
56
:value =" selectedRepo"
@@ -77,7 +77,7 @@ const openState = reactive<Record<string, boolean>>({})
77
77
:style =" { '--section-index': i }"
78
78
class =" flex flex-col gap-4 md:rounded-md md:border-solid border border-gray-700 md:px-4 pb-8 mt-6 columns-1 lg:columns-2 border-b-solid animate-pulse"
79
79
>
80
- <h2 class =" flex items-center" >
80
+ <h2 class =" flex items-center my-4 font-bold text-2xl " >
81
81
<span class =" text-gray-500 inline-block mr-1 font-normal" >#</span >
82
82
<span class =" inline-block rounded-md h-5 bg-gray-500 w-5" />
83
83
</h2 >
@@ -91,7 +91,7 @@ const openState = reactive<Record<string, boolean>>({})
91
91
<section
92
92
class =" flex flex-col gap-4 md:rounded-md md:border-solid border border-gray-700 md:px-4 pb-8 mt-6 columns-1 lg:columns-2 border-b-solid"
93
93
>
94
- <h2 class =" flex items-center" >
94
+ <h2 class =" flex items-center my-4 font-bold text-2xl " >
95
95
<span class =" text-gray-500 inline-block mr-1 font-normal" >#</span >
96
96
</h2 >
97
97
<p class =" flex flex-row gap-2 leading-tightest" >
@@ -109,7 +109,7 @@ const openState = reactive<Record<string, boolean>>({})
109
109
:style =" { '--section-index': c }"
110
110
class =" flex flex-col gap-4 md:rounded-md md:border-solid border border-gray-700 md:px-4 pb-8 mt-6 columns-1 lg:columns-2 border-b-solid"
111
111
>
112
- <h2 >
112
+ <h2 class = " my-4 font-bold text-2xl " >
113
113
<span class =" text-gray-500 inline-block mr-1 font-normal" >#</span >{{ c + 1 }}
114
114
</h2 >
115
115
<GitHubIssue
@@ -126,7 +126,7 @@ const openState = reactive<Record<string, boolean>>({})
126
126
/>
127
127
<button
128
128
v-if =" cluster.length > 5 && openState[c] !== true"
129
- class =" rounded-md border-solid border border-gray-700 bg-transparent color-gray-400 py-2 hover:color-gray-200 active:color-white focus:color-gray-200 hover:border-gray-400 active:border-white focus:border-gray-400 transition-colors"
129
+ class =" rounded-md text-sm border-solid border border-gray-700 bg-transparent color-gray-400 py-2 hover:color-gray-200 active:color-white focus:color-gray-200 hover:border-gray-400 active:border-white focus:border-gray-400 transition-colors"
130
130
type =" button"
131
131
@click =" openState[c] = !openState[c]"
132
132
>
0 commit comments