Sizing of hover items in the highlights view

This commit is contained in:
Jackson Harper
2024-07-09 14:43:36 +08:00
parent 1b21617e24
commit cfbdcd82ea

View File

@ -69,7 +69,7 @@ export const HighlightHoverActions = (props: HighlightHoverActionsProps) => {
event.preventDefault() event.preventDefault()
}} }}
> >
<Copy size={19} color={theme.colors.thNotebookSubtle.toString()} /> <Copy size={21} color={theme.colors.thNotebookSubtle.toString()} />
</Button> </Button>
<Button <Button
style="hoverActionIcon" style="hoverActionIcon"
@ -78,7 +78,7 @@ export const HighlightHoverActions = (props: HighlightHoverActionsProps) => {
event.preventDefault() event.preventDefault()
}} }}
> >
<LabelIcon size={18} color={theme.colors.thNotebookSubtle.toString()} /> <LabelIcon size={21} color={theme.colors.thNotebookSubtle.toString()} />
</Button> </Button>
<Button <Button
style="hoverActionIcon" style="hoverActionIcon"
@ -87,7 +87,7 @@ export const HighlightHoverActions = (props: HighlightHoverActionsProps) => {
event.preventDefault() event.preventDefault()
}} }}
> >
<BookOpen size={18} color={theme.colors.thNotebookSubtle.toString()} /> <BookOpen size={21} color={theme.colors.thNotebookSubtle.toString()} />
</Button> </Button>
<Button <Button
style="hoverActionIcon" style="hoverActionIcon"
@ -96,7 +96,7 @@ export const HighlightHoverActions = (props: HighlightHoverActionsProps) => {
event.preventDefault() event.preventDefault()
}} }}
> >
<TrashIcon size={18} color={theme.colors.thNotebookSubtle.toString()} /> <TrashIcon size={21} color={theme.colors.thNotebookSubtle.toString()} />
</Button> </Button>
</Box> </Box>
) )