File tree Expand file tree Collapse file tree 1 file changed +13
-2
lines changed
apps/renderer/src/modules/entry-column/templates Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -160,6 +160,7 @@ export function ListItem({
160
160
size = { settingWideMode ? 65 : 80 }
161
161
className = "m-0 rounded"
162
162
useMedia
163
+ noMargin
163
164
/>
164
165
}
165
166
/>
@@ -252,8 +253,18 @@ function AudioCover({
252
253
253
254
{ ! ! estimatedMins && (
254
255
< div className = "absolute bottom-0 w-full overflow-hidden rounded-b-sm text-center " >
255
- < div className = "absolute left-0 top-0 size-full bg-white/50 opacity-0 duration-200 group-hover:opacity-100 dark:bg-neutral-900/70" />
256
- < div className = "text-[13px] opacity-0 backdrop-blur-none duration-200 group-hover:opacity-100 group-hover:backdrop-blur-sm" >
256
+ < div
257
+ className = { cn (
258
+ "absolute left-0 top-0 size-full bg-white/50 opacity-0 duration-200 group-hover:opacity-100 dark:bg-neutral-900/70" ,
259
+ isMobile && "opacity-100" ,
260
+ ) }
261
+ />
262
+ < div
263
+ className = { cn (
264
+ "text-[13px] opacity-0 backdrop-blur-none duration-200 group-hover:opacity-100 group-hover:backdrop-blur-sm" ,
265
+ isMobile && "opacity-100 backdrop-blur-sm" ,
266
+ ) }
267
+ >
257
268
{ formatEstimatedMins ( estimatedMins ) }
258
269
</ div >
259
270
</ div >
You can’t perform that action at this time.
0 commit comments