Skip to content

Commit 6dfe163

Browse files
committed
Fix some styling
1 parent e48d619 commit 6dfe163

File tree

5 files changed

+434
-377
lines changed

5 files changed

+434
-377
lines changed

apps/api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
},
1616
"devDependencies": {
1717
"@types/ms": "0.7.31",
18-
"@types/node": "18.11.16",
18+
"@types/node": "18.11.17",
1919
"eslint-config-devfaq": "workspace:*",
2020
"pino-pretty": "9.1.1",
2121
"tsconfig": "workspace:*",

apps/app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"@storybook/testing-library": "^0.0.13",
4040
"@svgr/webpack": "6.5.1",
4141
"@tailwindcss/typography": "0.5.8",
42-
"@types/node": "18.11.16",
42+
"@types/node": "18.11.17",
4343
"@types/prismjs": "1.26.0",
4444
"@types/react": "18.0.26",
4545
"@types/react-dom": "18.0.9",
@@ -60,7 +60,7 @@
6060
"tailwindcss": "^3.2.4",
6161
"tsconfig": "workspace:*",
6262
"typescript": "4.9.4",
63-
"vitest": "0.25.8"
63+
"vitest": "0.26.0"
6464
},
6565
"nextBundleAnalysis": {
6666
"budget": null,

apps/app/src/components/QuestionsList/QuestionItem/QuestionItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export const QuestionItem = ({
2929
<article className="flex bg-white p-5 text-sm text-neutral-500 shadow-md dark:bg-white-dark dark:text-neutral-200">
3030
<QuestionVoting questionId={id} votes={votes} voted={voted} onQuestionVote={onQuestionVote} />
3131
<QuestionContent source={mdxContent} />
32-
<div className="ml-4 flex min-w-max flex-col items-end">
32+
<div className="ml-4 mt-2 flex min-w-max flex-col items-end">
3333
<QuestionLevel level={level} />
3434
<Link href={`/questions/p/${id}`} className="mt-3 text-xs underline">
3535
<time dateTime={creationDate.toISOString()}>{format(creationDate)}</time>

apps/app/src/components/QuestionsList/QuestionItem/QuestionVoting.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export const QuestionVoting = ({
3939
return (
4040
<button
4141
className={twMerge(
42-
"mr-4 flex h-fit items-center gap-x-1.5 text-neutral-200 transition-colors",
42+
"mr-4 mt-1 flex h-fit items-center gap-x-1.5 text-neutral-200 transition-colors",
4343
voted && "text-violet-700 dark:text-violet-300",
4444
)}
4545
type="button"

0 commit comments

Comments
 (0)