mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
fix: Reduce size of button to match visual area on Collaborators component
This commit is contained in:
@@ -82,7 +82,7 @@ function Collaborators(props: Props) {
|
||||
<PopoverDisclosure {...popover}>
|
||||
{(popoverProps) => (
|
||||
<NudeButton
|
||||
width={Math.max(collaborators.length, limit) * 32}
|
||||
width={Math.min(collaborators.length, limit) * 32}
|
||||
height={32}
|
||||
{...popoverProps}
|
||||
>
|
||||
|
||||
Reference in New Issue
Block a user