File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -54,16 +54,16 @@ const TodoList = () => {
5454 return (
5555 < div className = "flex flex-col container mx-auto max-w-md pt-19 text-white" >
5656 < input
57+ className = "w-full p-2 rounded-md border border-gray-300"
5758 type = "text"
5859 placeholder = "Nueva tarea"
59- className = "w-full p-2 rounded-md border border-gray-300"
6060 value = { newTodo }
6161 onChange = { handleInputChange }
6262 />
6363
6464 < button
6565 onClick = { handleAddTodo }
66- className = "w-full p-2 rounded-md border border-gray-300 mt-10 "
66+ className = "w-full p-2 rounded-md border border-gray-300"
6767 >
6868 Agregar
6969 </ button >
Original file line number Diff line number Diff line change 1- @import "tailwindcss" ;
1+ @import "tailwindcss" ;
Original file line number Diff line number Diff line change 11import { defineConfig } from "vite"
22import react from "@vitejs/plugin-react"
33import tailwindcss from "@tailwindcss/vite"
4-
54// https://vite.dev/config/
65export default defineConfig ( {
76 plugins : [ react ( ) , tailwindcss ( ) ] ,
You can’t perform that action at this time.
0 commit comments