mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-21 20:37:02 -04:00
Fix lag caused by poorly written CSS rules (#3198)
Co-authored-by: Nuckyz <61953774+Nuckyz@users.noreply.github.com>
This commit is contained in:
parent
4f5ebec4bb
commit
6cccb54ffc
43 changed files with 270 additions and 330 deletions
|
@ -33,6 +33,7 @@ export function VerifiedIcon() {
|
|||
forcedIconColor={forcedIconColor}
|
||||
size={16}
|
||||
tooltipText={getIntlMessage("CONNECTION_VERIFIED")}
|
||||
className="vc-sc-tooltip-icon"
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -125,7 +125,7 @@ function CompactConnectionComponent({ connection, theme }: { connection: Connect
|
|||
<span className="vc-sc-tooltip">
|
||||
<span className="vc-sc-connection-name">{connection.name}</span>
|
||||
{connection.verified && <VerifiedIcon />}
|
||||
<TooltipIcon height={16} width={16} />
|
||||
<TooltipIcon height={16} width={16} className="vc-sc-tooltip-icon" />
|
||||
</span>
|
||||
}
|
||||
key={connection.id}
|
||||
|
|
|
@ -14,6 +14,6 @@
|
|||
word-break: break-all;
|
||||
}
|
||||
|
||||
.vc-sc-tooltip svg {
|
||||
.vc-sc-tooltip-icon {
|
||||
min-width: 16px;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue