Skip to content

Commit 8f78a62

Browse files
fix: update font-family to include sans-serif fallback in collab and visual builder styles
1 parent 41e9e00 commit 8f78a62

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/visualBuilder/collab.style.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export function collabStyles() {
5252
background-color: #edf1f7;
5353
border: 1.5px solid #ffffff;
5454
border-radius: 50%;
55-
font-family: Inter;
55+
font-family: Inter, sans-serif;
5656
font-weight: 600;
5757
justify-content: center;
5858
position: relative;
@@ -382,7 +382,7 @@ export function collabStyles() {
382382
cursor: default;
383383
position: relative;
384384
padding: 0 !important;
385-
font-family: Inter;
385+
font-family: Inter, sans-serif;
386386
color: #475161;
387387
width: 20.75rem;
388388
`,

src/visualBuilder/visualBuilder.style.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const tooltipBaseStyle = `
1515
width: max-content;
1616
max-width: 200px;
1717
color: #fff;
18-
font-family: Inter;
18+
font-family: Inter, sans-serif;
1919
font-size: 0.75rem;
2020
font-style: normal;
2121
font-weight: 400;
@@ -238,7 +238,7 @@ export function visualBuilderStyles() {
238238
color: #fff;
239239
/* Body/P1 Bold */
240240
font-size: 1rem;
241-
font-family: Inter;
241+
font-family: Inter, sans-serif;
242242
font-weight: 600;
243243
line-height: 150%;
244244
letter-spacing: 0.01rem;
@@ -248,7 +248,7 @@ export function visualBuilderStyles() {
248248
& > svg {
249249
color: #fff;
250250
font-size: 1rem;
251-
font-family: Inter;
251+
font-family: Inter, sans-serif;
252252
font-weight: 600;
253253
line-height: 150%;
254254
letter-spacing: 0.01rem;
@@ -595,7 +595,7 @@ export function visualBuilderStyles() {
595595
`,
596596
"visual-builder__empty-block-title": css`
597597
font-size: 0.95rem;
598-
font-family: Inter;
598+
font-family: Inter, sans-serif;
599599
font-weight: 400;
600600
line-height: 100%;
601601
color: #647696;
@@ -611,7 +611,7 @@ export function visualBuilderStyles() {
611611
border-width: 1px;
612612
padding: 0 16px;
613613
font-size: 0.9rem;
614-
font-family: Inter;
614+
font-family: Inter, sans-serif;
615615
font-weight: 600;
616616
color: #6c5ce7;
617617
letter-spacing: 0.01rem;

0 commit comments

Comments
 (0)