summaryrefslogtreecommitdiff
path: root/src/components/review.tsx
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2023-05-26 18:57:36 -0600
committerHombreLaser <sebastian-440@live.com>2023-05-26 18:57:36 -0600
commite6fa7db87b5f879de71bfc9e4f8afea9d722ab95 (patch)
tree599188426b9ab131e09e6d2a5d79b486562a6899 /src/components/review.tsx
parenta0318f76f40deaeba367badf18af6141325d29e9 (diff)
Añade creación de reseñas
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>
</>