[fix] user card overflow

This commit is contained in:
2025-07-08 11:31:32 +08:00
parent 529ae547e0
commit 7012f0d9fe
5 changed files with 22 additions and 23 deletions

BIN
bun.lockb

Binary file not shown.

View File

@@ -18,62 +18,62 @@
},
"dependencies": {
"@formkit/auto-animate": "^0.8.2",
"@heroui/react": "^2.7.5",
"@heroui/react": "^2.7.11",
"@icon-park/react": "^1.4.2",
"@reactuses/core": "6.0.1",
"@supabase/ssr": "0.6.1",
"@tauri-apps/api": "2.4.0",
"@tauri-apps/plugin-autostart": "^2.3.0",
"@tauri-apps/plugin-cli": "~2.2.0",
"@tauri-apps/plugin-autostart": "^2.5.0",
"@tauri-apps/plugin-cli": "~2.2.1",
"@tauri-apps/plugin-clipboard-manager": "2.2.2",
"@tauri-apps/plugin-deep-link": "~2.2.1",
"@tauri-apps/plugin-dialog": "~2.2.1",
"@tauri-apps/plugin-dialog": "~2.2.2",
"@tauri-apps/plugin-fs": "2.2.0",
"@tauri-apps/plugin-global-shortcut": "2.2.0",
"@tauri-apps/plugin-http": "2.4.2",
"@tauri-apps/plugin-notification": "2.2.2",
"@tauri-apps/plugin-os": "2.2.1",
"@tauri-apps/plugin-process": "2.2.0",
"@tauri-apps/plugin-shell": "~2.2.1",
"@tauri-apps/plugin-store": "^2.2.0",
"@tauri-apps/plugin-shell": "~2.2.2",
"@tauri-apps/plugin-store": "^2.3.0",
"@tauri-store/valtio": "2.1.1",
"@types/throttle-debounce": "^5.0.2",
"ahooks": "^3.8.4",
"framer-motion": "^12.6.3",
"ahooks": "^3.9.0",
"framer-motion": "^12.23.0",
"next": "15.2.3",
"next-themes": "^0.4.6",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"swr": "^2.3.3",
"swr": "^2.3.4",
"tauri-plugin-system-info-api": "^2.0.10"
},
"devDependencies": {
"@tauri-apps/cli": "^2.4.1",
"@tauri-apps/cli": "^2.6.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.17",
"@types/node": "^22.16.0",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"autoprefixer": "^10.4.21",
"clsx": "^2.1.1",
"cross-env": "^7.0.3",
"cssnano": "^7.0.6",
"cssnano": "^7.0.7",
"eslint": "9.23.0",
"eslint-config-next": "15.2.3",
"lint-staged": "^15.5.0",
"postcss": "^8.5.3",
"postcss-import": "^16.1.0",
"postcss-nesting": "^13.0.1",
"lint-staged": "^15.5.2",
"postcss": "^8.5.6",
"postcss-import": "^16.1.1",
"postcss-nesting": "^13.0.2",
"tailwind-merge": "3.0.2",
"tailwindcss": "3.4.17",
"typescript": "^5.8.2"
"typescript": "^5.8.3"
},
"browserslist": {
"production": [

View File

@@ -91,7 +91,7 @@ fn main() {
// .expect("Unsupported platform! 'apply_blur' is only supported on Windows");
// Deep Link
#[cfg(desktop)]
#[cfg(all(desktop, not(target_os = "macos")))]
app.deep_link().register("cstb")?;
// Tray

View File

@@ -34,7 +34,7 @@ const SteamUsers = ({ className }: { className?: string }) => {
</CardHeader>
<CardBody className="overflow-y-hidden">
<ul
className="flex flex-col h-full gap-3 mt-1 overflow-y-auto rounded-lg hide-scrollbar"
className="flex flex-col h-full gap-3 mt-1 overflow-y-auto rounded-lg pb-11 hide-scrollbar"
ref={parent}
>
{steam.state.users.map((user, id) => (

View File

@@ -8,7 +8,6 @@ module.exports = {
theme: {
extend: {},
},
plugins: [],
darkMode: "class",
plugins: [heroui()],
}