Created by: taylorbryant
Last night, I was looking through Bootstrap's documentation on my phone, and I noticed that the album example looked rather odd. My first thought was that maybe the examples are not meant to be optimized for mobile. After looking at the other examples, which look just as good on mobile, I concluded otherwise.
In these commits, I did the following:
- Removed float and width properties from the .card class
- Added .col-md-4 class to each card
- Refactored the footer to use Bootstrap's own grid system instead of relying on the .float-right utility class
In my opinion, the end result is a much better experience on mobile. The only thing that sticks out now is that the buttons at the top hug each other on mobile. Anyways, I figured this is a decent start.