fix: border color
This commit is contained in:
parent
27eb23c9d0
commit
c89a974bb3
|
|
@ -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",
|
||||
)}
|
||||
|
|
|
|||
|
|
@ -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`}
|
||||
>
|
||||
|
|
|
|||
|
|
@ -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}>
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue