Skip to content

Commit

Permalink
✨ - add fields to signup page
Browse files Browse the repository at this point in the history
  • Loading branch information
NaviTheCoderboi committed Mar 27, 2024
1 parent 48be48d commit 0e9c107
Show file tree
Hide file tree
Showing 22 changed files with 660 additions and 80 deletions.
4 changes: 3 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,7 @@
},
"editor.quickSuggestions": {
"strings": "on"
}
},
"editor.cursorBlinking": "smooth",
"editor.cursorSmoothCaretAnimation": "on"
}
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"test": "playwright test",
"test:dev": "@powershell -NoProfile -ExecutionPolicy Unrestricted -Command ./scripts/test_dev.ps1",
"test:prod": "playwright test",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
Expand All @@ -15,7 +16,6 @@
"devDependencies": {
"@melt-ui/pp": "^0.3.0",
"@melt-ui/svelte": "^0.76.0",
"@playwright/test": "^1.28.1",
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
Expand All @@ -35,8 +35,11 @@
},
"type": "module",
"dependencies": {
"@internationalized/date": "^3.5.2",
"autoprefixer": "^10.4.18",
"lucide-svelte": "^0.359.0",
"postcss": "^8.4.35",
"svelte-ripple-action": "^1.0.6",
"tailwindcss": "^3.4.1"
}
}
12 changes: 0 additions & 12 deletions playwright.config.ts

This file was deleted.

78 changes: 25 additions & 53 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 22 additions & 1 deletion src/app.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,600;0,800;1,300;1,400;1,600;1,800&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
@tailwind utilities;


body {
font-family: 'Poppins', sans-serif;
font-weight: 400;
}

.field input:valid ~ label,
.field input:focus ~ label {
transform: translateY(-50%);
font-size: 15px;
color: #fff;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
transition: all 1000000s ease-in-out 0s;
}
2 changes: 1 addition & 1 deletion src/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1" />
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover">
<body data-sveltekit-preload-data="hover" class="text-dark bg-dark">
<div style="display: contents">%sveltekit.body%</div>
</body>
</html>
Binary file added src/lib/assets/logo.webp
Binary file not shown.
Loading

0 comments on commit 0e9c107

Please sign in to comment.