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
2 changes: 1 addition & 1 deletion src/components/AppFooter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export class AppFooter extends Component {
href="${href}"
target="${external ? "_blank" : nothing}"
rel="${external ? "noopener noreferrer" : nothing}"
class="text-neutral-400"
class="rounded-md text-neutral-400 outline-offset-2 outline-blue-400 focus-visible:outline-2"
>${label}</a>
`;
}
Expand Down
4 changes: 3 additions & 1 deletion src/components/ServiceGroupRow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ export class ServiceGroupRow extends ServiceRow {
c.status !== ServiceStatus.OPERATIONAL
)}"
>
<summary class="block cursor-pointer">
<summary
class="block cursor-pointer rounded-md outline-offset-4 outline-blue-400 focus-visible:outline-2"
>
${this.renderTop()}
<div class="group-open/services:hidden">
${this.renderBars()} ${this.renderBottom()}
Expand Down