Skip to content

Commit

Permalink
💄 Fix font-family in sentry feedback form
Browse files Browse the repository at this point in the history
  • Loading branch information
cermakjiri committed Dec 5, 2024
1 parent 115d55d commit 976e0c1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/sentry/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ import {
replayIntegration,
} from '@sentry/nextjs';

import './styles/feedback-form.css';

export function initSentryForClient(dsn: string) {
init({
dsn,
Expand Down
7 changes: 7 additions & 0 deletions packages/sentry/styles/feedback-form.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
:root {
--font-family: 'Montserrat';
}

#sentry-feedback {
font-family: var(--font-family);
}

0 comments on commit 976e0c1

Please sign in to comment.