Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/common/CreatorSocialLinksList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,11 @@ const CreatorSocialLinksList: React.FC<CreatorSocialLinksListProps> = ({
href={url}
target="_blank"
rel="noreferrer"
className="link-action-chip group inline-flex w-full items-center justify-center gap-1.5 rounded-lg border border-white/10 bg-white/[0.03] px-2.5 py-2 text-[11px] font-semibold text-white/80 transition-colors hover:border-amber-400/40 hover:bg-amber-400/10 hover:text-amber-100"
className="link-action-chip group inline-flex w-full items-center justify-center gap-1.5 rounded-lg border border-white/10 bg-white/[0.03] px-2.5 py-2 text-[11px] font-semibold text-white/80 transition-all hover:border-amber-400/40 hover:bg-amber-400/10 hover:text-amber-100 focus-visible:border-amber-400/60 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-amber-400/50 focus-visible:ring-offset-2 focus-visible:ring-offset-background"
>
<Icon className="size-3.5" />
<span>{label}</span>
<LinkIcon className="size-3 opacity-0 transition-opacity group-hover:opacity-80" />
<LinkIcon className="size-3 opacity-0 transition-opacity group-hover:opacity-80 group-focus-visible:opacity-80" />
</a>
</li>
))}
Expand Down
21 changes: 0 additions & 21 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -175,27 +175,6 @@
margin-bottom: var(--spacing-section-major);
}

.link-action-chip:focus-visible {
outline: none;
border-color: rgba(252, 211, 77, 0.85);
background-color: rgba(251, 191, 36, 0.2);
color: rgba(255, 255, 255, 0.98);
box-shadow:
0 0 0 2px rgba(252, 211, 77, 0.9),
0 0 0 5px rgba(15, 23, 42, 0.95);
}

@media (forced-colors: active) {
.link-action-chip:focus-visible {
outline: 2px solid Highlight;
outline-offset: 2px;
border-color: Highlight;
background-color: Canvas;
color: CanvasText;
box-shadow: none;
}
}

.skeleton-shimmer {
position: relative;
overflow: hidden;
Expand Down
Loading