fix: improve collapsed highlights panel button placement

- Change chevron to point right (rotation 180) when collapsed
- Position button at top-left instead of center
- Align with header position for consistency
- Adjust padding to match expanded state header

The expand button now appears at the top of the panel
next to where the highlight count would be, making it
more intuitive and consistent with the UI.
This commit is contained in:
Gigi
2025-10-04 22:24:18 +01:00
parent a941449ba4
commit 2ca23d67de
2 changed files with 3 additions and 3 deletions

View File

@@ -66,7 +66,7 @@ export const HighlightsPanel: React.FC<HighlightsPanelProps> = ({
title="Expand highlights panel"
aria-label="Expand highlights panel"
>
<FontAwesomeIcon icon={faChevronLeft} />
<FontAwesomeIcon icon={faChevronLeft} rotation={180} />
</button>
</div>
)