Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d1b56b3

Browse files
committed
Add border color
1 parent 6af6df4 commit d1b56b3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/goals/GoalDescription.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Markdown } from '..'
22

33
export default function GoalDescription({ children }: { children: string }) {
44
return (
5-
<div className="py-3 xl:pt-6 xl:pb-0 border-b xl:border-0">
5+
<div className="py-3 xl:pt-6 xl:pb-0 border-b border-gray-200 xl:border-0">
66
<h2 className="sr-only">Description</h2>
77
<div className="prose max-w-none">
88
<Markdown>{children}</Markdown>

src/components/goals/GoalTitle.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export default function GoalTitle({
1515
showEditButton: boolean
1616
}) {
1717
return (
18-
<div className="md:flex md:items-center md:justify-between md:space-x-4 xl:border-b xl:pb-6">
18+
<div className="md:flex md:items-center md:justify-between md:space-x-4 xl:border-b xl:border-gray-200 xl:pb-6">
1919
<div>
2020
<h1>
2121
<span className="block text-sm text-indigo-600 font-semibold tracking-wide uppercase">

0 commit comments

Comments
 (0)