diff --git a/front/packages/primitives/src/input.tsx b/front/packages/primitives/src/input.tsx index 7f568923..9ebf6ae5 100644 --- a/front/packages/primitives/src/input.tsx +++ b/front/packages/primitives/src/input.tsx @@ -38,7 +38,7 @@ export const Input = forwardRef< {...css( [ { - borderColor: (theme) => theme.colors.white, + borderColor: (theme) => theme.accent, borderRadius: ts(1), borderWidth: px(1), borderStyle: "solid", diff --git a/front/packages/primitives/src/menu.web.tsx b/front/packages/primitives/src/menu.web.tsx index 2952a1c3..80ad6833 100644 --- a/front/packages/primitives/src/menu.web.tsx +++ b/front/packages/primitives/src/menu.web.tsx @@ -23,7 +23,7 @@ import { ComponentProps, ComponentType, forwardRef, ReactElement, ReactNode } fr import Link from "next/link"; import { PressableProps } from "react-native"; import { useYoshiki } from "yoshiki/web"; -import { px, useYoshiki as useNativeYoshiki, calc } from "yoshiki/native"; +import { useYoshiki as useNativeYoshiki } from "yoshiki/native"; import { P } from "./text"; import { ContrastArea, SwitchVariant } from "./themes"; import { Icon } from "./icons"; @@ -162,7 +162,7 @@ const MenuItem = ({ alignItems: "center", padding: "8px", height: "32px", - focus: focusReset as any, + ...focusReset, }, props as any, )} diff --git a/front/packages/ui/src/navbar/index.tsx b/front/packages/ui/src/navbar/index.tsx index b0c5cd04..66edd5d7 100644 --- a/front/packages/ui/src/navbar/index.tsx +++ b/front/packages/ui/src/navbar/index.tsx @@ -88,7 +88,7 @@ const SearchBar = forwardRef(function SearchBar(props, ref) }} placeholder={t("navbar.search")} {...tooltip(t("navbar.search"))} - {...css({ height: ts(4), flexShrink: 1 }, props)} + {...css({ height: ts(4), flexShrink: 1, borderColor: (theme) => theme.colors.white }, props)} /> ); }); @@ -131,7 +131,7 @@ export const NavbarProfile = () => { /> ))} {accounts.length > 0 &&
} - {!accounts ? ( + {!account ? ( <>