@@ -20,7 +20,7 @@ import Loader from "./loading";
20
20
const EmptyState = ( ) => {
21
21
return (
22
22
< div className = "py-24" >
23
- < div className = "mx-auto max-w-md rounded-md border-2 w-full border-dashed border-gray-300 p-8 text-center" >
23
+ < div className = "mx-auto w-full max-w-md rounded-md border-2 border-dashed border-gray-300 p-8 text-center" >
24
24
< div className = "mb-4" >
25
25
< InboxIcon className = "inline-block h-10 w-10 text-gray-400" />
26
26
</ div >
@@ -84,14 +84,14 @@ export function PollsList() {
84
84
cell : ( { row } ) => {
85
85
return (
86
86
< Link className = "group block" href = { `/poll/${ row . original . id } ` } >
87
- < div className = "flex items-center gap-x-2 mb-1 min-w-0 " >
88
- < h3 className = "font-semibold truncate text-gray-600 group-hover:text-gray-900" >
87
+ < div className = "mb-1 flex min-w-0 items-center gap-x-2" >
88
+ < h3 className = "truncate font-semibold text-gray-600 group-hover:text-gray-900" >
89
89
{ row . original . title }
90
90
</ h3 >
91
- < ArrowRightIcon className = "h-4 w-4 opacity-0 transition-all group-focus:translate-x-2 group-hover:opacity-100 " />
91
+ < ArrowRightIcon className = "h-4 w-4 opacity-0 transition-all group-hover:opacity-100 group-focus:translate-x-2 " />
92
92
</ div >
93
93
{ row . original . event ? (
94
- < p className = "text-sm text- muted-foreground" >
94
+ < p className = "text-muted-foreground text-sm " >
95
95
{ row . original . event . duration === 0
96
96
? adjustTimeZone (
97
97
row . original . event . start ,
@@ -134,7 +134,7 @@ export function PollsList() {
134
134
cell : ( { row } ) => {
135
135
const { createdAt } = row . original ;
136
136
return (
137
- < p className = "text-sm whitespace-nowrap text-muted-foreground " >
137
+ < p className = "text-muted-foreground whitespace-nowrap text-sm " >
138
138
< time dateTime = { createdAt . toDateString ( ) } >
139
139
< Trans
140
140
i18nKey = "createdTime"
@@ -150,7 +150,7 @@ export function PollsList() {
150
150
cell : ( { row } ) => {
151
151
return (
152
152
< Tooltip delayDuration = { 100 } >
153
- < TooltipTrigger className = "flex items-center text-muted-foreground gap-x-2" >
153
+ < TooltipTrigger className = "text-muted-foreground flex items-center gap-x-2" >
154
154
< UsersIcon className = "h-4 w-4" />
155
155
< span className = "text-sm" >
156
156
{ row . original . participants . length }
0 commit comments