Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Patch --> Develop #2663

Merged
merged 4 commits into from
Jan 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading