Skip to content

Commit

Permalink
fix: correct typography styling
Browse files Browse the repository at this point in the history
  • Loading branch information
henrycunh committed May 10, 2023
1 parent 697830d commit 2be6cbc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions components/go/typography.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ defineProps<{
<div
text-color flex items-center
:class="[
size === 'small' && `text-0.75em sm:text-1em`,
size === 'medium' && `text-1em sm:text-1.5em`,
size === 'large' && `text-1.5em sm:text-2em`,
size === 'small' && `text-0.75em sm:text-.75em`,
size === 'medium' && `text-1em sm:text-1em`,
size === 'large' && `text-1.5em sm:text-1.5em`,
color === 'lighter' && `text-color-lighter`,
]"
>
Expand Down
2 changes: 1 addition & 1 deletion components/settings/max-tokens/input.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ defineEmits(['update:modelValue'])
<template>
<div>
<GoTypography title size="small" color="lighter" info="The max amount of tokens per response.">
Model
Maximum Tokens
</GoTypography>
<GoTypography subtitle size="small" color="lighter">
Leave blank to not limit.
Expand Down

0 comments on commit 2be6cbc

Please sign in to comment.