This is a solution to the Todo app challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.
Users should be able to:
- View the optimal layout for the app depending on their device's screen size
- See hover states for all interactive elements on the page
- Add new todos to the list
- Mark todos as complete
- Delete todos from the list
- Filter by all/active/complete todos
- Clear all completed todos
- Toggle light and dark mode
- Bonus: Drag and drop to reorder items on the list
- Solution URL: https://github.com/NDOY3M4N/todo-app
- Live Site URL: https://ndoy3m4n.github.io/todo-app/
- Semantic HTML5 markup
- CSS custom properties
- Mobile-first workflow
- Vue 3 - JS library
- Vue Draggable Next - Vue 3 drag-and-drop component based on Sortable.js
- Tailwind CSS - A nice CSS Framework
- Theming Tailwind with CSS Variables - This video from Tailwind Labs helped me for implementing the dark/light theme.
- Styling Form Elements with Tailwind CSS - This video (also from Tailwind Labs) explains how to style a form element (in my case the checkbox input) using
@tailwindcss/forms
plugin.