Skip to content

Commit

Permalink
Merge pull request #58 from rohitmore07/main
Browse files Browse the repository at this point in the history
Fix button alignment in settings page
  • Loading branch information
ShreyTanna29 authored Dec 7, 2024
2 parents 2718dc0 + 469479b commit aff43df
Show file tree
Hide file tree
Showing 5 changed files with 80 additions and 91 deletions.
13 changes: 0 additions & 13 deletions .env.example

This file was deleted.

2 changes: 1 addition & 1 deletion app/(dashboard)/(routes)/settings/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default function SettingsPage() {

<div className="flex gap-4 items-center ml-6">
<h1 className="font-bold">Account : </h1>
<div className="flex gap-4">
<div className="flex flex-col sm:flex-row gap-4 ml-20 mt-4 md:mt-0">
<Link href={"/user-profile"}>
<Button
variant={"outline"}
Expand Down
130 changes: 59 additions & 71 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"crisp-sdk-web": "^1.0.25",
"framer-motion": "^11.13.1",
"lucide-react": "^0.446.0",
"next": "14.2.13",
"next": "^15.0.4",
"nextjs-toploader": "^3.7.15",
"react": "^18",
"react-dom": "^18",
Expand Down
24 changes: 19 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
Expand All @@ -18,9 +22,19 @@
}
],
"paths": {
"@/*": ["./*"]
}
"@/*": [
"./*"
]
},
"target": "ES2017"
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}

0 comments on commit aff43df

Please sign in to comment.