Spec measurements (7px/8px/9px text) were spec-document zoom artifacts — not viable at real browser scale. Updated to readable compact sizes: - Row 1 compact label: text-xs (12px) uppercase instead of 7px - Row 1 input: h-9 text-sm (36px/14px) instead of 30px/9px - Row 1 swap button: h-9 w-9 to align with taller inputs - Row 2 date inputs: h-8 text-xs (32px/12px) instead of 22px/8px - Row 2 label/count/sort: text-xs instead of 7px/8px Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
sv
Everything you need to build a Svelte project, powered by sv.
Creating a project
If you're seeing this, you've probably already done this step. Congrats!
# create a new project in the current directory
npx sv create
# create a new project in my-app
npx sv create my-app
Developing
Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
Building
To create a production version of your app:
npm run build
You can preview the production build with npm run preview.
To deploy your app, you may need to install an adapter for your target environment.