File tree 2 files changed +15
-2
lines changed
2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change
1
+ export default function Loading ( ) {
2
+ return (
3
+ < div className = "fixed inset-0 flex items-center justify-center" >
4
+ < h3 className = "text-2xl text-primary font-semibold" >
5
+ < div
6
+ className = "mx-auto mb-8 h-16 w-16 animate-spin rounded-full border-4 border-solid border-current border-r-transparent align-[-0.125em] motion-reduce:animate-[spin_1.5s_linear_infinite]"
7
+ role = "status"
8
+ /> { ' ' }
9
+ Loading...
10
+ </ h3 >
11
+ </ div >
12
+ ) ;
13
+ }
Original file line number Diff line number Diff line change @@ -25,13 +25,13 @@ export default async function ChangelogsListPage() {
25
25
26
26
return (
27
27
< Fragment >
28
- < header className = "mb-4 col-start-3 col-span-2 text-left" >
28
+ < header className = "mb-4 col-start-2 col-span-2 text-left" >
29
29
< Button >
30
30
< PlusIcon />
31
31
< Link href = "/changelog/_admin/create" > New Changelog</ Link >
32
32
</ Button >
33
33
</ header >
34
- < section className = "overflow-x-auto col-start-3 col-span-8 shadow-md rounded-lg" >
34
+ < section className = "overflow-x-auto col-start-2 col-span-10 shadow-md rounded-lg" >
35
35
< table className = "w-full text-sm text-left text-gray-500" >
36
36
< thead className = "text-xs text-gray-700 uppercase bg-gray-50" >
37
37
< tr >
You can’t perform that action at this time.
0 commit comments