From d858bd4e0fc7aaba15509a17b35138e843667bc1 Mon Sep 17 00:00:00 2001 From: Pawel Zelawski Date: Thu, 10 Apr 2025 14:35:56 +0200 Subject: refactor: improve layout and spacing across all views - Remove extra space at the top of the page by adjusting body and root styles - Add consistent 20px top padding to all views through app-container - Simplify layout structure by removing unnecessary flex containers - Adjust spacing between elements for better visual hierarchy: - Reduce gaps between elements from 1.5rem to 1rem - Reduce bottom margin of h1 from 1.5rem to 1rem - Remove negative margins and extra padding - Maintain consistent box dimensions (390px width, 560px height) for all views - Ensure proper spacing for QR code and other content within views --- tsconfig.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'tsconfig.json') diff --git a/tsconfig.json b/tsconfig.json index c3d78aa..15bc493 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -16,9 +16,10 @@ "paths": { "~/*": ["./src/*"] }, - "outDir": "dist", - "noEmit": true + "outDir": "dist/server", + "rootDir": "src", + "noEmit": false }, - "include": ["src", "vite.config.ts", ".eslintrc.cjs"], - "exclude": ["node_modules", "dist"] + "include": ["src/server/**/*.ts", "src/shared/**/*.ts"], + "exclude": ["node_modules", "dist", "src/client"] } \ No newline at end of file -- cgit v1.2.3