Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronccasanova committed Sep 22, 2023
1 parent a5e588c commit 8d8f98b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions polaris-tokens/src/themes/base/text.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export const text: {
value: createVar('font-letter-spacing-denser'),
},
'text-heading-2xl-font-line-height': {
value: createVar('font-size-1000'),
value: createVar('font-line-height-1000'),
},
// heading-xl
'text-heading-xl-font-family': {
Expand Down Expand Up @@ -86,7 +86,7 @@ export const text: {
value: createVar('font-letter-spacing-dense'),
},
'text-heading-lg-font-line-height': {
value: createVar('font-size-600'),
value: createVar('font-line-height-600'),
},
// heading-md
'text-heading-md-font-family': {
Expand All @@ -102,7 +102,7 @@ export const text: {
value: createVar('font-letter-spacing-normal'),
},
'text-heading-md-font-line-height': {
value: createVar('font-size-500'),
value: createVar('font-line-height-500'),
},
// heading-sm
'text-heading-sm-font-family': {
Expand All @@ -118,7 +118,7 @@ export const text: {
value: createVar('font-letter-spacing-normal'),
},
'text-heading-sm-font-line-height': {
value: createVar('font-size-500'),
value: createVar('font-line-height-500'),
},
// body-lg
'text-body-lg-font-family': {
Expand All @@ -134,7 +134,7 @@ export const text: {
value: createVar('font-letter-spacing-normal'),
},
'text-body-lg-font-line-height': {
value: createVar('font-size-500'),
value: createVar('font-line-height-500'),
},
// body-md
'text-body-md-font-family': {
Expand All @@ -150,7 +150,7 @@ export const text: {
value: createVar('font-letter-spacing-normal'),
},
'text-body-md-font-line-height': {
value: createVar('font-size-500'),
value: createVar('font-line-height-500'),
},
// body-sm
'text-body-sm-font-family': {
Expand All @@ -166,7 +166,7 @@ export const text: {
value: createVar('font-letter-spacing-normal'),
},
'text-body-sm-font-line-height': {
value: createVar('font-size-400'),
value: createVar('font-line-height-400'),
},
// body-xs
'text-body-xs-font-family': {
Expand All @@ -182,6 +182,6 @@ export const text: {
value: createVar('font-letter-spacing-normal'),
},
'text-body-xs-font-line-height': {
value: createVar('font-size-300'),
value: createVar('font-line-height-300'),
},
};

0 comments on commit 8d8f98b

Please sign in to comment.