fix: border color

This commit is contained in:
daidr 2023-04-14 01:08:08 +08:00
parent 27eb23c9d0
commit c89a974bb3
No known key found for this signature in database
GPG Key ID: 5003CFBB53B5176F
4 changed files with 4 additions and 4 deletions

View File

@ -51,7 +51,7 @@ export const CharacterCard: React.FC<{
return (
<span
className={cn(
"border-gray-100 rounded-lg text-sm block cursor-default",
"border-border border rounded-lg text-sm block cursor-default",
style === "flat" ? "" : "p-4 bg-white shadow-xl",
simple ? "space-y-1" : "space-y-2",
)}

View File

@ -278,7 +278,7 @@ export const ConnectButton: React.FC<{
}
dropdown={
<div
className={`text-gray-600 bg-white rounded-lg ring-1 ring-zinc-100 min-w-[140px] shadow-md py-2 ${
className={`text-gray-600 bg-white rounded-lg ring-1 ring-border min-w-[140px] shadow-md py-2 ${
size === "base" ? "text-base" : "text-sm"
} mt-1`}
>

View File

@ -166,7 +166,7 @@ export const PagesManagerMenu: FC<{
}, [])
return (
<Menu.Items className="text-sm absolute z-20 right-0 bg-white shadow-modal rounded-lg overflow-hidden py-2 w-64">
<Menu.Items className="text-sm absolute z-20 right-0 bg-white shadow-modal rounded-lg overflow-hidden py-2 w-64 ring-1 ring-border">
{items.map((item) => {
return (
<Menu.Item key={item.text}>

View File

@ -259,7 +259,7 @@ export const SiteHeader: React.FC<{
</Button>
}
dropdown={
<div className="text-gray-600 bg-white rounded-lg ring-1 ring-zinc-100 shadow-md py-2 text-sm">
<div className="text-gray-600 bg-white rounded-lg ring-1 ring-border shadow-md py-2 text-sm">
{moreMenuItems.map((item) => {
return (
<UniLink