Currently, my web app has two columns when the screen size is big enough.
https://i.sstatic.net/aQPlF.png
The spacing between the elements in the left column and the one below it is causing an issue that I want to address.
.thumnnail {
display: inline-block;
width: 400px;
float: right;
}
This snippet represents the CSS for the small boxes. I'm uncertain about how to make them stack more closely together. Please let me know if you need more information!
EDIT: Here is the JS Fiddle link.