Commit 5a1af7b2 authored by Steven's avatar Steven

fix: adjust badge height

parent 0c516c83
......@@ -116,7 +116,7 @@ const MemoRelatedSettings = observer(() => {
<div className="mt-2 w-full flex flex-row flex-wrap gap-1">
{memoRelatedSetting.reactions.map((reactionType) => {
return (
<Badge key={reactionType} variant="outline" className="flex items-center gap-1">
<Badge key={reactionType} variant="outline" className="flex items-center gap-1 h-8">
{reactionType}
<span
className="cursor-pointer text-muted-foreground hover:text-primary"
......@@ -151,7 +151,7 @@ const MemoRelatedSettings = observer(() => {
<div className="mt-2 w-full flex flex-row flex-wrap gap-1">
{memoRelatedSetting.nsfwTags.map((nsfwTag) => {
return (
<Badge key={nsfwTag} variant="outline" className="flex items-center gap-1">
<Badge key={nsfwTag} variant="outline" className="flex items-center gap-1 h-8">
{nsfwTag}
<span
className="cursor-pointer text-muted-foreground hover:text-primary"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment