Usability fixes for new room header (#11729)

* Usability fixes for new room header

* lintfix

* Apply padding to both heading and topic

* lintfix

* comment clarity

* Remove title attr
This commit is contained in:
Germain
2023-10-11 15:43:01 +01:00
committed by GitHub
parent e5a3b6c390
commit ac32d45bcd
11 changed files with 76 additions and 60 deletions

View File

@@ -65,12 +65,10 @@ const FacePile: FC<IProps> = ({
);
const content = (
<div className="mx_FacePile">
<AccessibleButton kind="link_inline" onClick={props.onClick ?? null}>
<AvatarStack>{pileContents}</AvatarStack>
{children}
</AccessibleButton>
</div>
<AccessibleButton className="mx_FacePile" kind="link_inline" onClick={props.onClick ?? null}>
<AvatarStack>{pileContents}</AvatarStack>
{children}
</AccessibleButton>
);
return tooltipLabel ? (