mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-25 22: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
|
@ -39,7 +39,7 @@ function BlockedUser({ user, isBusy, setIsBusy }: { user: ReviewDBUser; isBusy:
|
|||
|
||||
return (
|
||||
<div className={cl("block-modal-row")}>
|
||||
<img src={user.profilePhoto} alt="" />
|
||||
<img className={cl("block-modal-avatar")} src={user.profilePhoto} alt="" />
|
||||
<Forms.FormText className={cl("block-modal-username")}>{user.username}</Forms.FormText>
|
||||
<UnblockButton
|
||||
onClick={isBusy ? undefined : async () => {
|
||||
|
|
|
@ -65,7 +65,7 @@ function Modal({ modalProps, modalKey, discordId, name, type }: { modalProps: an
|
|||
</ModalContent>
|
||||
|
||||
<ModalFooter className={cl("modal-footer")}>
|
||||
<div>
|
||||
<div className={cl("modal-footer-wrapper")}>
|
||||
{ownReview && (
|
||||
<ReviewComponent
|
||||
refetch={refetch}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue