mirror of
https://github.com/lukevella/rallly.git
synced 2025-08-06 09:59:00 +02:00
📦 Upgrade tailwind and start using size utility (#989)
This commit is contained in:
parent
048c475cf7
commit
d0b359afaf
80 changed files with 177 additions and 170 deletions
|
@ -88,7 +88,7 @@ const Discussion: React.FunctionComponent = () => {
|
|||
return (
|
||||
<div className="divide-y">
|
||||
<div className="flex items-center gap-2 bg-gray-50 px-4 py-3 font-semibold">
|
||||
<MessageCircleIcon className="h-5 w-5" /> {t("comments")} (
|
||||
<MessageCircleIcon className="size-5" /> {t("comments")} (
|
||||
{comments.length})
|
||||
</div>
|
||||
{comments.length ? (
|
||||
|
@ -114,7 +114,7 @@ const Discussion: React.FunctionComponent = () => {
|
|||
<DropdownMenu>
|
||||
<DropdownMenuTrigger asChild={true}>
|
||||
<button className="hover:text-foreground text-gray-500">
|
||||
<MoreHorizontalIcon className="h-4 w-4" />
|
||||
<MoreHorizontalIcon className="size-4" />
|
||||
</button>
|
||||
</DropdownMenuTrigger>
|
||||
<DropdownMenuContent align="start">
|
||||
|
@ -125,7 +125,7 @@ const Discussion: React.FunctionComponent = () => {
|
|||
});
|
||||
}}
|
||||
>
|
||||
<TrashIcon className="mr-2 h-4 w-4" />
|
||||
<TrashIcon className="mr-2 size-4" />
|
||||
<Trans i18nKey="delete" />
|
||||
</DropdownMenuItem>
|
||||
</DropdownMenuContent>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue