From c60e2ad3a77f33c98ba9235fa60217848d218e13 Mon Sep 17 00:00:00 2001 From: Dan Grebb Date: Tue, 19 Sep 2023 20:26:29 -0400 Subject: [PATCH] chore(front): sets sentry config with float; adds missing color to Code light theme --- front/src/hooks.client.js | 6 +++--- front/src/lib/styles/base/theme.css | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/front/src/hooks.client.js b/front/src/hooks.client.js index 132c005b3..f0d72e170 100644 --- a/front/src/hooks.client.js +++ b/front/src/hooks.client.js @@ -8,11 +8,11 @@ Sentry.init({ integrations: [new Sentry.BrowserTracing(), new Sentry.Replay()], tracePropagationTargets: ['localhost', /^https:\/\/\*\.dgrebb\.com\/api/], tracesSampleRate: - PUBLIC_ENV === 'production' ? 0.5 : PUBLIC_ENV === 'staging' ? 0.25 : 0, + PUBLIC_ENV === 'production' ? 0.5 : PUBLIC_ENV === 'staging' ? 0.25 : 0.0, replaysSessionSampleRate: - PUBLIC_ENV === 'production' ? 0.5 : PUBLIC_ENV === 'staging' ? 0.25 : 0, + PUBLIC_ENV === 'production' ? 0.5 : PUBLIC_ENV === 'staging' ? 0.25 : 0.0, replaysOnErrorSampleRate: - PUBLIC_ENV === 'production' ? 1 : PUBLIC_ENV === 'staging' ? 0.25 : 0, + PUBLIC_ENV === 'production' ? 1.0 : PUBLIC_ENV === 'staging' ? 0.25 : 0.0, normalizeDepth: 0, beforeSend(event) { if (event.user) { diff --git a/front/src/lib/styles/base/theme.css b/front/src/lib/styles/base/theme.css index 3659b8d96..9a7bae85b 100644 --- a/front/src/lib/styles/base/theme.css +++ b/front/src/lib/styles/base/theme.css @@ -310,11 +310,11 @@ } } td:first-child { - background: var(--lemon); + background: var(--lemon-25); background: linear-gradient( 90deg, - var(--lemon) 65%, - var(--lemon) 81%, + var(--lemon-25) 65%, + var(--lemon-25) 81%, transparent 100% ); color: var(--violet-a30);