syndesisio / syndesis.io

The syndesis.io Website
https://syndesis.io
10 stars 34 forks source link

Cross-Device Compatibility #37

Closed kahboom closed 6 years ago

kahboom commented 7 years ago

We should have appropriate layouts that work for an array of device sizes. We can use Bootstrap's responsive breakpoints (and mixins) to do this.

We need to support the following (literally copy & pasted from the Bootstrap website):

// Extra small devices (portrait phones, less than 576px)
// No media query since this is the default in Bootstrap

// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

// Large devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }

Note the "extra large devices". Can't forget about those. :)