fix: ensure full width highlighting for list items in sessions and folders

This commit is contained in:
Shantur Rathore
2025-10-28 21:42:39 +00:00
parent 70fe2cab01
commit 47852df9d7
4 changed files with 30 additions and 29 deletions

View File

@@ -85,10 +85,10 @@ const SessionPicker: Component<SessionPickerProps> = (props) => {
{(session) => (
<button
type="button"
class="selector-option w-full text-left"
class="selector-option w-full text-left hover:bg-surface-hover focus:bg-surface-hover"
onClick={() => handleSessionSelect(session.id)}
>
<div class="selector-option-content">
<div class="selector-option-content w-full">
<span class="selector-option-label truncate">
{session.title || "Untitled"}
</span>