Skip to content

Commit

Permalink
style(signatures): slight changes to text
Browse files Browse the repository at this point in the history
  • Loading branch information
flowergardn committed Dec 9, 2023
1 parent 0a695f3 commit 8a25077
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Signatures.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,15 +99,15 @@ const Signature = (props: { signature: CardWish; admin?: boolean }) => {
};

return (
<div className="flex flex-row" key={props.signature.id}>
<div className="mb-4 flex flex-row" key={props.signature.id}>
<img
src={props.signature.profilePicture}
className="mt-[0.375rem] h-10 w-10 rounded-full"
/>
<div className="ml-2 flex w-[75%] flex-col text-[1rem] lg:w-[78%]">
<b>{props.signature.username}</b>
<button
className={`max-h-6 w-full truncate text-ellipsis text-start`}
className={`max-h-6 w-full text-start`}
onClick={() => {
alert(props.signature.text);
}}
Expand Down

0 comments on commit 8a25077

Please sign in to comment.