Skip to content

Commit

Permalink
Updated styling of border radius of board
Browse files Browse the repository at this point in the history
  • Loading branch information
me3zaAKAgoat committed Mar 31, 2024
1 parent 17553b7 commit a156f23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/CycleNotes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const NotesContainer = ({

return (
<textarea
className="placeholder-quaternary mt-2 w-[80%] h-[85%] bg-secondary border-[0.5px] border-quaternary p-4 text-primary-content font-semibold resize-none focus:outline-none focus:ring-4 focus:ring-tertiary transition-all"
className="rounded placeholder-quaternary mt-2 w-[80%] h-[85%] bg-secondary border-[0.5px] border-quaternary p-4 text-primary-content font-semibold resize-none focus:outline-none focus:ring-4 focus:ring-tertiary transition-all"
spellCheck="false"
value={notes || ''}
placeholder="Anything you write here will be saved automatically. Write things you want to remember for this cycle!"
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/TaskCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ function TaskCard({

return (
<div
className={`transition-all hover:shadow-lg bg-secondary mb-6 w-full border-[0.5px] border-quaternary overflow-hidden flex flex-col border-l-4 ${
className={`rounded transition-all hover:shadow-lg bg-secondary mb-6 w-full border-[0.5px] border-quaternary overflow-hidden flex flex-col border-l-4 ${
priorityColor[task?.priority!]
}`}
>
Expand Down

0 comments on commit a156f23

Please sign in to comment.