Reactions cutoff

fixes #585
This commit is contained in:
Kieran 2023-06-26 12:43:26 +01:00
parent 7ce15d19e3
commit 18cf675651
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941
2 changed files with 3 additions and 3 deletions

View File

@ -44,14 +44,14 @@
line-height: 19px; line-height: 19px;
} }
.reactions-modal .modal-body .body { .reactions-modal .modal-body .reactions-body {
overflow: scroll; overflow: scroll;
height: 40vh; height: 40vh;
-ms-overflow-style: none; /* for Internet Explorer, Edge */ -ms-overflow-style: none; /* for Internet Explorer, Edge */
scrollbar-width: none; /* Firefox */ scrollbar-width: none; /* Firefox */
} }
.reactions-modal .modal-body .body::-webkit-scrollbar { .reactions-modal .modal-body .reactions-body::-webkit-scrollbar {
display: none; display: none;
} }

View File

@ -82,7 +82,7 @@ const Reactions = ({ show, setShow, positive, negative, reposts, zaps }: Reactio
</h2> </h2>
</div> </div>
<Tabs tabs={tabs} tab={tab} setTab={setTab} /> <Tabs tabs={tabs} tab={tab} setTab={setTab} />
<div className="body" key={tab.value}> <div className="reactions-body" key={tab.value}>
{tab.value === 0 && {tab.value === 0 &&
likes.map(ev => { likes.map(ev => {
return ( return (