bootstrap: update comment style
This commit is contained in:
parent
6fa781f2ef
commit
410adc4447
12
bootstrap.md
12
bootstrap.md
|
@ -13,15 +13,15 @@ layout: default
|
|||
|
||||
Min:
|
||||
|
||||
@media (min-width: @screen-sm-min) { /* >= 768px (small tablet) */
|
||||
@media (min-width: @screen-md-min) { /* >= 992px (medium laptop) */
|
||||
@media (min-width: @screen-lg-min) { /* >= 1200px (large desktop) */
|
||||
@media (min-width: @screen-sm-min) { // >= 768px (small tablet)
|
||||
@media (min-width: @screen-md-min) { // >= 992px (medium laptop)
|
||||
@media (min-width: @screen-lg-min) { // >= 1200px (large desktop)
|
||||
|
||||
Max:
|
||||
|
||||
@media (max-width: @screen-xs-max) { /* < 768px (xsmall phone) */
|
||||
@media (max-width: @screen-sm-max) { /* < 992px (small tablet) */
|
||||
@media (max-width: @screen-md-max) { /* < 1200px (medium laptop) */
|
||||
@media (max-width: @screen-xs-max) { // < 768px (xsmall phone)
|
||||
@media (max-width: @screen-sm-max) { // < 992px (small tablet)
|
||||
@media (max-width: @screen-md-max) { // < 1200px (medium laptop)
|
||||
|
||||
### Columns
|
||||
|
||||
|
|
Loading…
Reference in New Issue