Grid Component - Setup
Some style to help illustrate the grid component.
- HTML
<style> /* specify viewport sizes to showcase media query + offset support */ @custom-media --sm-viewport (min-width:320px) and (max-width:640px); @custom-media --md-viewport (min-width:640px) and (max-width:960px); @custom-media --lg-viewport (min-width:960px); .fixture-Box { background: rgb(100, 150, 50); background: rgb(100, 150, 50); border: 1px solid black; margin-bottom: 10px; min-height: 50px; } .fixture-Box--doubleHeight { min-height: 100px; } .Test { padding: 0 10px; } </style>