Is there a way to ensure that my page displays the same on both small and large screens? While it looks perfect on larger screens, things start to get messy when viewing on smaller screens. Below is a snippet of the code (created using bootstrap and CSS):
<div class="list-group">
<ul class="panel-info col-lg-12 list">
<li class="list-group-item list__item col-lg-4" ng-repeat="entity in entitiesPaginated">
</li>
</ul>
</div>
I won't paste all the code here as I believe the key issue lies in the bootstrap part. What adjustments should I make to ensure consistent display across different screen sizes? Thank you for your help.