Skip to content

Commit

Permalink
Merge pull request #2663 from gluestack/patch
Browse files Browse the repository at this point in the history
Patch --> Develop
  • Loading branch information
akash3gtm authored Jan 6, 2025
2 parents 9591e2a + 325f8a3 commit 168c1d5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const inputSlotStyle = tva({
});

const inputFieldStyle = tva({
base: 'flex-1 text-typography-900 py-auto px-3 placeholder:text-typography-500 h-full ios:leading-[0px] web:cursor-text web:data-[disabled=true]:cursor-not-allowed',
base: 'flex-1 text-typography-900 py-0 px-3 placeholder:text-typography-500 h-full ios:leading-[0px] web:cursor-text web:data-[disabled=true]:cursor-not-allowed',

parentVariants: {
variant: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function Card1() {
const [showCopy, setShowCopy] = useState(false);

const copyToClipboard = async () => {
const text = 'npm create gluestack';
const text = 'npm create gluestack@latest';
await navigator.clipboard.writeText(text);
setCopied(true);
setTimeout(() => {
Expand Down Expand Up @@ -55,7 +55,7 @@ function Card1() {
<Text className="text-lg leading-sm mx-3 font-source-code-pro font-medium text-typography-900 md:text-xl md:leading-md">
npm create{' '}
<Text className="text-lg leading-sm font-medium text-primary-300 font-source-code-pro md:text-xl md:leading-md">
gluestack
gluestack@latest
</Text>
</Text>
{showCopy ? (
Expand Down

0 comments on commit 168c1d5

Please sign in to comment.