Need help figuring out how to make two buttons display as block elements on small screens and inline elements on larger screens, especially when one button is wrapped inside a form?
I am struggling with displaying two buttons on my page. One of the buttons is just a local link while the other has been wrapped in a form by my colleague. The issue arises when trying to view the page on smaller screens as the button inside the form does not appear as a block element anymore.
The desired result should be:
Small screen:
| button1 |
| button2 |
Large screen:
| button1 | | button2 |
Current progress with code:
https://www.bootply.com/CETPAyWp2K
(resize screen width to see the effect)