From c41acbadbdd2e251fadaa0e4e15cf7d560dedb9c Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Sun, 27 Aug 2023 13:25:04 +0200 Subject: [PATCH] Add screen sizes to docstring of breakpoints --- src/utility.lisp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/utility.lisp b/src/utility.lisp index 7faa993..01bb089 100644 --- a/src/utility.lisp +++ b/src/utility.lisp @@ -207,11 +207,11 @@ These correspond to various device screen sizes: - 'xs': Extra small screens (portrait phones) - - 'sm': Small screens (landscape phones) - - 'md': Medium screens (tablets) - - 'lg': Large screens (small laptops and desktops) - - 'xl': Extra-large screens (large laptops and desktops) - - 'xxl': Extremely large screens (full-size monitors)") + - 'sm': Small screens (landscape phones ≥576px) + - 'md': Medium screens (tablets ≥768px) + - 'lg': Large screens (small laptops and desktops ≥992px) + - 'xl': Extra-large screens (large laptops and desktops ≥1200px) + - 'xxl': Extremely large screens (full-size monitors ≥1400px)") (defparameter *sides* '("t" "b" "s" "e" "x" "y")