This commit is contained in:
Benjamin Toby 2025-07-22 11:58:03 +01:00
parent 1db7601c85
commit aceddf5146
3 changed files with 5 additions and 4 deletions

View File

@ -191,7 +191,7 @@ export default function SearchSelect<
target={ target={
<Input <Input
type="text" type="text"
placeholder="Search" placeholder={props.title || "Search Options"}
value={inputValue} value={inputValue}
prefix={(<Search size={18} />) as any} prefix={(<Search size={18} />) as any}
suffix={(<ChevronDown size={20} />) as any} suffix={(<ChevronDown size={20} />) as any}
@ -240,6 +240,7 @@ export default function SearchSelect<
setSelectIndex(undefined); setSelectIndex(undefined);
}} }}
componentRef={inputRef} componentRef={inputRef}
showLabel={showLabel}
/> />
} }
targetWrapperProps={{ className: "w-full" }} targetWrapperProps={{ className: "w-full" }}

View File

@ -129,7 +129,7 @@ export function MyWorkPortfolioCard({
<Link <Link
target="_blank" target="_blank"
href={portfolio.href} href={portfolio.href}
className="text-sm text-wrap break-all border-none" className="text-sm text-wrap break-all border- dotted-text"
> >
{portfolio.href} {portfolio.href}
</Link> </Link>

View File

@ -60,7 +60,7 @@
} }
.twui-a { .twui-a {
@apply !text-foreground-light/70 dark:!text-foreground-dark/70 border-none; @apply !text-foreground-light/70 dark:!text-foreground-dark/70 border-none hover:dark:!text-white hover:opacity-100;
} }
.twui-a.active { .twui-a.active {
@ -68,7 +68,7 @@
} }
.dotted-text { .dotted-text {
@apply border-0 border-b-2 border-dotted border-foreground-light/20 dark:!border-foreground-dark/20 pb-1; @apply border-0 border-b-2 border-dotted border-foreground-light/20 dark:!border-foreground-dark/20 pb-[2px];
} }
.dotted-text:hover { .dotted-text:hover {