This repository was archived by the owner on Feb 10, 2025. It is now read-only.
File tree Expand file tree Collapse file tree
apps/ui/components/common Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import ClientOnly from "common/src/ClientOnly";
88import { JustForDesktop , JustForMobile } from "@/modules/style/layout" ;
99import { truncatedText } from "@/styles/util" ;
1010import Link from "next/link" ;
11+ import { focusStyles } from "common/styles/cssFragments" ;
1112
1213type Props = {
1314 count : number ;
@@ -78,11 +79,20 @@ const DeleteButton = styled(Button).attrs({
7879` ;
7980
8081const StyledLink = styled ( Link ) `
81- background-color: var(--color-white) ;
82- color: var(--color-bus );
82+ background-color: transparent ;
83+ color: var(--color-white );
8384 ${ truncatedText }
8485 display: flex;
8586 gap: var(--spacing-2-xs);
87+ ${ focusStyles }
88+ padding: var(--spacing-2-xs) var(--spacing-s);
89+ && {
90+ --color-focus: var(--color-white);
91+ --focus-outline-color: var(--color-white);
92+ }
93+ &:hover {
94+ text-decoration: underline;
95+ }
8696` ;
8797
8898const StartApplicationBar = ( {
You can’t perform that action at this time.
0 commit comments