From bb2d1798713a5e474c990d319e0292abe29f99a4 Mon Sep 17 00:00:00 2001 From: Michelle Date: Tue, 24 Mar 2026 11:28:15 +0100 Subject: [PATCH] style: Update button styling and icon size in RecordingList component for improved UI --- src/components/RecordingList.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/RecordingList.jsx b/src/components/RecordingList.jsx index 8ac3448..e25440a 100644 --- a/src/components/RecordingList.jsx +++ b/src/components/RecordingList.jsx @@ -122,9 +122,9 @@ export default function RecordingList({ recordings, onRefresh }) { href={format.url} target="_blank" rel="noopener noreferrer" - className="inline-flex items-center gap-1 px-2.5 py-1 rounded-lg bg-th-accent/10 text-th-accent text-xs font-medium hover:bg-th-accent/20 transition-colors" + className="inline-flex items-center gap-2 px-3 py-2 rounded-lg bg-th-accent/10 text-th-accent text-sm font-medium hover:bg-th-accent/20 transition-colors" > - + {format.type === 'presentation' ? t('recordings.presentation') : format.type} ))}