Skip to content

Commit

Permalink
- fix review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
andriidudar committed Feb 4, 2025
1 parent c8d0409 commit b4461e1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
1 change: 0 additions & 1 deletion apps/opik-frontend/src/lib/formatCodeSnippets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { BASE_API_URL } from "@/api/api";
export const OPIK_API_KEY_TEMPLATE = "# INJECT_OPIK_CONFIGURATION";
export const OPIK_HIGHLIGHT_LINE_TEMPLATE = " # HIGHLIGHTED_LINE";

// TODO lala workspace name
export const buildApiKeyConfig = (
apiKey: string,
masked = false,
Expand Down
14 changes: 13 additions & 1 deletion apps/opik-frontend/src/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -260,5 +260,17 @@
}

.comet-line-highlight {
background: hsl(var(--secondary)) !important;
position: relative;

&:after {
content: "";
display: block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: -5;
background: hsl(var(--secondary));
}
}

0 comments on commit b4461e1

Please sign in to comment.