@@ -20,7 +20,7 @@ export const LogFileSelect = () => {
disabled={disabled}
onChange={e => onLogFileChange(e.target.value)}
aria-label="Select log file"
- className="flex-1 min-w-0 bg-transparent border-0 outline-none font-mono text-xs text-fg-muted cursor-pointer disabled:cursor-not-allowed"
+ className="flex-1 min-w-0 h-full bg-transparent border-0 outline-none font-mono text-xs text-fg-muted cursor-pointer disabled:cursor-not-allowed"
>
{logFiles &&
diff --git a/frontend/src/components/logs/controls/ModuleSelect.jsx b/frontend/src/components/logs/controls/ModuleSelect.jsx
index f44eacac..a4e5fd60 100755
--- a/frontend/src/components/logs/controls/ModuleSelect.jsx
+++ b/frontend/src/components/logs/controls/ModuleSelect.jsx
@@ -10,7 +10,7 @@ export const ModuleSelect = () => {
const { modules, selectedModule, onModuleChange } = useLogControls();
return (
-
+
{
value={selectedModule || ''}
onChange={e => onModuleChange(e.target.value)}
aria-label="Select module"
- className="flex-1 min-w-0 bg-transparent border-0 outline-none text-[13px] text-fg cursor-pointer"
+ className="flex-1 min-w-0 h-full bg-transparent border-0 outline-none text-[13px] text-fg cursor-pointer"
>
{modules.map(module => (
diff --git a/frontend/src/components/maintenance/LibraryMaintenance.jsx b/frontend/src/components/maintenance/LibraryMaintenance.jsx
index 61affccb..33eeab50 100644
--- a/frontend/src/components/maintenance/LibraryMaintenance.jsx
+++ b/frontend/src/components/maintenance/LibraryMaintenance.jsx
@@ -254,7 +254,7 @@ const IncompleteMetadataCard = () => {
key={f.key}
type="button"
onClick={() => toggleField(f.key)}
- className="px-3 py-1.5 rounded-full text-sm cursor-pointer"
+ className="inline-flex items-center min-h-11 px-3 rounded-full text-sm cursor-pointer"
style={{
background: active
? 'color-mix(in srgb, var(--accent) 18%, transparent)'
diff --git a/frontend/src/components/modals/EditMediaModal.jsx b/frontend/src/components/modals/EditMediaModal.jsx
index 9a07aae6..8c12c37c 100644
--- a/frontend/src/components/modals/EditMediaModal.jsx
+++ b/frontend/src/components/modals/EditMediaModal.jsx
@@ -200,7 +200,7 @@ const EditMediaModal = ({ isOpen, onClose, item, onSave, isSaving = false }) =>
diff --git a/frontend/src/components/modules/ScheduleBlocksEditor.jsx b/frontend/src/components/modules/ScheduleBlocksEditor.jsx
index dbb5735c..ac929d00 100644
--- a/frontend/src/components/modules/ScheduleBlocksEditor.jsx
+++ b/frontend/src/components/modules/ScheduleBlocksEditor.jsx
@@ -129,7 +129,7 @@ export const ScheduleBlocksEditor = ({ blocks, onChange, disabled }) => {
value={b.mode}
disabled={disabled}
onChange={e => update(i, { mode: e.target.value })}
- className="bg-surface border border-border rounded px-2 py-1 text-sm"
+ className="h-11 bg-surface border border-border rounded px-2 text-sm"
>
{MODE_OPTIONS.map(m => (