Skip to content

Commit

Permalink
feat: fix text capitalize
Browse files Browse the repository at this point in the history
  • Loading branch information
timothyrusso committed Oct 5, 2023
1 parent fcc2202 commit b825d8a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/ideation/components/CreateIdeationContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function CreateIdeationContainer() {
<VoteDescriptionCard />
<Button
title="Create Project"
customClassName="max-[1920px]:w-[160px] btn-primary text-base-300 normal-case"
customClassName="max-[1920px]:w-[160px] btn-primary text-base-300 capitalize"
>
Create Project
</Button>
Expand All @@ -26,7 +26,7 @@ function CreateIdeationContainer() {
</section>
<Button
title="Create Project"
customClassName="max-w-[200px] w-full btn-primary text-base-300 normal-case hidden min-[1920px]:block"
customClassName="max-w-[200px] w-full btn-primary text-base-300 capitalize hidden min-[1920px]:block"
>
Create Project
</Button>
Expand Down
6 changes: 5 additions & 1 deletion src/app/ideation/components/VoteDescriptionCard.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
function VoteDescriptionCard({ className }: { className?: string }) {
interface VoteDescriptionCardProps {
className?: string
}

function VoteDescriptionCard({ className }: VoteDescriptionCardProps) {
return (
<div className={`card max-w-[200px] w-full max-[1919px]:max-w-[160px] h-28 max-[1919px]:h-32 bg-primary-content rounded-lg ${className}`}>
<section className="flex flex-col items-start p-4 gap-y-4">
Expand Down

0 comments on commit b825d8a

Please sign in to comment.