summaryrefslogtreecommitdiff
path: root/src/components/review.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/review.tsx')
-rw-r--r--src/components/review.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/review.tsx b/src/components/review.tsx
index 153c202..d97e410 100644
--- a/src/components/review.tsx
+++ b/src/components/review.tsx
@@ -7,7 +7,7 @@ export default function Review({ review }) {
return(
<>
- <div className="grid grid-cols-10 w-3/5 my-4">
+ <div className="grid grid-cols-10 w-4/6 my-4">
<div className="flex flex-col col-span- justify-center mx-2">
<div className="text-black">
{review.attributes.author_name}
@@ -20,9 +20,9 @@ export default function Review({ review }) {
</div>
</div>
<div className="flex col-span-8 justify-start">
- <div className="border-solid border-2 border-gray-200">
+ <textarea id="message" rows={4} className="block p-2.5 w-full text-sm text-gray-900 bg-gray-50 rounded-lg border border-gray-300 focus:ring-blue-500 focus:border-blue-500 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500" disabled>
{review.attributes.review}
- </div>
+ </textarea>
</div>
</div>
</>