diff --git a/.gitignore b/.gitignore index a547bf3..336c237 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,6 @@ dist-ssr *.njsproj *.sln *.sw? + +# Other +.env diff --git a/package-lock.json b/package-lock.json index ea81c4b..6234563 100644 --- a/package-lock.json +++ b/package-lock.json @@ -3144,14 +3144,14 @@ } }, "node_modules/tinyglobby": { - "version": "0.2.14", - "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.14.tgz", - "integrity": "sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==", + "version": "0.2.15", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", + "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", "dev": true, "license": "MIT", "dependencies": { - "fdir": "^6.4.4", - "picomatch": "^4.0.2" + "fdir": "^6.5.0", + "picomatch": "^4.0.3" }, "engines": { "node": ">=12.0.0" @@ -3161,11 +3161,14 @@ } }, "node_modules/tinyglobby/node_modules/fdir": { - "version": "6.4.6", - "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.6.tgz", - "integrity": "sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", "dev": true, "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, "peerDependencies": { "picomatch": "^3 || ^4" }, @@ -3307,18 +3310,18 @@ } }, "node_modules/vite": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/vite/-/vite-7.1.0.tgz", - "integrity": "sha512-3jdAy3NhBJYsa/lCFcnRfbK4kNkO/bhijFCnv5ByUQk/eekYagoV2yQSISUrhpV+5JiY5hmwOh7jNnQ68dFMuQ==", + "version": "7.1.7", + "resolved": "https://registry.npmjs.org/vite/-/vite-7.1.7.tgz", + "integrity": "sha512-VbA8ScMvAISJNJVbRDTJdCwqQoAareR/wutevKanhR2/1EkoXVZVkkORaYm/tNVCjP/UDTKtcw3bAkwOUdedmA==", "dev": true, "license": "MIT", "dependencies": { "esbuild": "^0.25.0", - "fdir": "^6.4.6", + "fdir": "^6.5.0", "picomatch": "^4.0.3", "postcss": "^8.5.6", "rollup": "^4.43.0", - "tinyglobby": "^0.2.14" + "tinyglobby": "^0.2.15" }, "bin": { "vite": "bin/vite.js" @@ -3382,11 +3385,14 @@ } }, "node_modules/vite/node_modules/fdir": { - "version": "6.4.6", - "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.6.tgz", - "integrity": "sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", "dev": true, "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, "peerDependencies": { "picomatch": "^3 || ^4" }, diff --git a/src/App.tsx b/src/App.tsx index 13bc10f..eb9cb60 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -76,7 +76,7 @@ function App() { newestOnTop={false} closeOnClick={false} rtl={false} - theme={systemDark ? "light" : "dark"} + theme={systemDark ? "dark" : "light"} /> diff --git a/src/pages/home/home.tsx b/src/pages/home/home.tsx index a9867b2..f05759e 100644 --- a/src/pages/home/home.tsx +++ b/src/pages/home/home.tsx @@ -25,6 +25,7 @@ const Home = () => { +

Test var: {import.meta.env.VITE_TEST}

) diff --git a/src/pages/login/login.css b/src/pages/login/login.css index 64ab99f..1327dff 100644 --- a/src/pages/login/login.css +++ b/src/pages/login/login.css @@ -72,9 +72,10 @@ .login-button { - margin-top: "10px"; + margin-top: 10px; padding: 16px 32px; font-size: 16px; + width: 100%; border-radius: 12px; background-color: var(--buttons-main-color); color: var(--text_dark); @@ -104,3 +105,12 @@ color: var(--links-hover-color); text-decoration: none; } + + +.separator { + color: var(--links-hover-color); + font-size: medium; + font-family: sans-serif; + margin-left: 4; + margin-right: 4; +} diff --git a/src/pages/login/login.tsx b/src/pages/login/login.tsx index e2e0288..08e4b2a 100644 --- a/src/pages/login/login.tsx +++ b/src/pages/login/login.tsx @@ -79,6 +79,12 @@ const Login = () => { required showError={usernameEmpty} errorMessage="Please enter your username" + // icon= /> {

Frontend

+ + | +

Backend

+ + | +

Author