Understanding the basics of Bootstrap and how to assign sizes to columns is one thing, but I seem to be stuck on a simple use case.
Here is the scenario:
I have two components for a Todo list application:
- Component 'New Todo' (Form Input field)
- Component 'Todo List' (Table List)
On large screens, I want the 'New Todo' component to take up half of the screen on the right, while the 'Todo List' component occupies the other half on the left.
However, on small (mobile) screens, the 'New Todo' component should appear on top with the 'Todo List' component positioned below it.
As an additional question: How can I make the 'New Todo' input field collapsible on small mobile screens?