mirror of
https://github.com/dergigi/boris.git
synced 2025-12-18 23:24:22 +01:00
fix: color /me highlights with 'my highlights' color setting
- Set level: 'mine' on all highlights in /me page - Highlights now use the customizable --highlight-color-mine CSS variable - Quote icons and borders automatically match user's color preference - Consistent styling with highlights shown elsewhere in the app
This commit is contained in:
@@ -105,7 +105,7 @@ const Me: React.FC<MeProps> = ({ relayPool }) => {
|
|||||||
{highlights.map((highlight) => (
|
{highlights.map((highlight) => (
|
||||||
<HighlightItem
|
<HighlightItem
|
||||||
key={highlight.id}
|
key={highlight.id}
|
||||||
highlight={highlight}
|
highlight={{ ...highlight, level: 'mine' }}
|
||||||
relayPool={relayPool}
|
relayPool={relayPool}
|
||||||
onHighlightDelete={handleHighlightDelete}
|
onHighlightDelete={handleHighlightDelete}
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user