Encountering some troubles with Bootstrap's Grid system on various devices. According to documentation, column sizes are based on window size:
Extra small 576px , Small >= 768px , Medium >= 992px , Large >=1200px
However, a medium device (rotated iPad at 1024 x 768) is being recognized as large by Bootstrap. Code snippet:
<div class="col-lg-2 col-md-4 col-sm-4">
When in landscape mode, the iPad shows the div at a larger column size than expected. Console log confirms the screen size as 1024px. Any insight on this issue?