star4z / familytree

Organize and display family trees
GNU General Public License v3.0
6 stars 2 forks source link

Sidebar covers entire screen in vertical orientations #71

Open star4z opened 4 years ago

star4z commented 4 years ago

image

cynthia5610 commented 4 years ago

https://getbootstrap.com/docs/3.4/css/#grid-options Our grid is currently using Small devices Tablets (≥768px) with col-sm-2 being around 17% of the screen. Total: 12 grid spaces.

https://getbootstrap.com/docs/3.4/css/#grid-example-mixed

Example:

<!-- Columns start at 50% wide on mobile and bump up to 33.3% wide on desktop -->

<div class="row">
  <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
  <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
  <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
</div>