Skip to content

Commit

Permalink
fix: usage of text-md instead of text-base
Browse files Browse the repository at this point in the history
  • Loading branch information
PHILLIPS71 committed May 4, 2024
1 parent f62096f commit e68a7e1
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion packages/theme/src/components/breadcrumb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const breadcrumb = tv({
item: 'text-sm',
},
md: {
item: 'text-md',
item: 'text-base',
},
lg: {
item: 'text-lg',
Expand Down
4 changes: 2 additions & 2 deletions packages/theme/src/components/input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ export const input = tv({
input: ['placeholder:text-sm'],
},
md: {
group: ['text-md'],
input: ['placeholder:text-md'],
group: ['text-base'],
input: ['placeholder:text-base'],
},
lg: {
group: ['text-lg'],
Expand Down
4 changes: 2 additions & 2 deletions packages/theme/src/components/select.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ export const select = tv({
option: ['text-sm'],
},
lg: {
select: ['text-md'],
option: ['text-md'],
select: ['text-base'],
option: ['text-base'],
},
},
status: {
Expand Down
4 changes: 2 additions & 2 deletions packages/theme/src/components/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ export const table = tv({
td: ['text-sm', 'p-2'],
},
md: {
th: ['text-md', 'px-3', 'py-4'],
td: ['text-md', 'p-3'],
th: ['text-base', 'px-3', 'py-4'],
td: ['text-base', 'p-3'],
},
lg: {
th: ['text-lg', 'px-4 py-5'],
Expand Down
2 changes: 1 addition & 1 deletion packages/theme/src/components/typography.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const typography = tv({
paragraph: ['text-sm'],
},
md: {
paragraph: ['text-md'],
paragraph: ['text-base'],
},
lg: {
paragraph: ['text-lg'],
Expand Down

0 comments on commit e68a7e1

Please sign in to comment.