Skip to content

Commit

Permalink
ref(feedback): Configure font size (#11437)
Browse files Browse the repository at this point in the history
Font sizes were set instead of using config option
  • Loading branch information
c298lee authored Apr 8, 2024
1 parent 091d23b commit 022fcb6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions packages/feedback/src/core/components/Actor.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ export function createActorStyles(): HTMLStyleElement {
border-radius: var(--border-radius);
cursor: pointer;
font-size: 14px;
font-weight: 600;
font-family: inherit;
font-size: var(--font-size);
font-weight: 600;
padding: 12px 16px;
text-decoration: none;
z-index: 9000;
Expand Down
6 changes: 3 additions & 3 deletions packages/feedback/src/modal/components/Dialog.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export function createDialogStyles(): HTMLStyleElement {
border: var(--input-border);
border-radius: var(--form-content-border-radius);
color: var(--input-foreground);
font-size: 14px;
font-size: var(--font-size);
font-weight: 500;
padding: 6px 12px;
}
Expand All @@ -153,10 +153,10 @@ export function createDialogStyles(): HTMLStyleElement {
border: var(--cancel-border);
border-radius: var(--form-content-border-radius);
cursor: pointer;
font-size: 14px;
font-family: inherit;
font-size: var(--font-size);
font-weight: 600;
padding: 6px 16px;
font-family: inherit;
}
.btn[disabled] {
opacity: 0.6;
Expand Down

0 comments on commit 022fcb6

Please sign in to comment.