From 4323f57503ac0406acfcbfc66ade9224abea1285 Mon Sep 17 00:00:00 2001 From: Matthias Schmidt Date: Tue, 20 Apr 2021 13:30:02 +0200 Subject: [PATCH] Add missing media breakpoints Close #142 --- docs/view/css.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/view/css.md b/docs/view/css.md index f5de101b..5eaa3b54 100644 --- a/docs/view/css.md +++ b/docs/view/css.md @@ -50,9 +50,12 @@ Media breakpoints instruct the browser to apply different CSS depending on the v | `screen-sm-up` | Tablets and desktop PC | `(min-width: 545px)` | | `screen-sm-md` | Tablets only | `(min-width: 545px) and (max-width: 1024px)` | | `screen-md` | Tablets (landscape) | `(min-width: 769px) and (max-width: 1024px)` | -| `screen-md-down` | Smartphones and Tablets | `(max-width: 1024px)` | +| `screen-md-down` | Smartphones and tablets | `(max-width: 1024px)` | | `screen-md-up` | Tablets (landscape) and desktop PC | `(min-width: 769px)` | | `screen-lg` | Desktop PC | `(min-width: 1025px)` | +| `screen-lg-only` | Desktop PC | `(min-width: 1025px) and (max-width: 1280px)` | +| `screen-lg-down` | Smartphones, tablets, and desktop PC | `(max-width: 1280px)` | +| `screen-xl` | Desktop PC | `(min-width: 1281px) ` | ## Asset Preloading -- 2.20.1