diff --git a/docs/src/pages/customization/breakpoints/breakpoints.md b/docs/src/pages/customization/breakpoints/breakpoints.md index 8f8c9072a7795f..0556e0235bce94 100644 --- a/docs/src/pages/customization/breakpoints/breakpoints.md +++ b/docs/src/pages/customization/breakpoints/breakpoints.md @@ -98,7 +98,7 @@ In the following demo, we change the rendered DOM element (*em*, u, ~~del #### Returns -`media query`: A media query string ready to be used with JSS. +`media query`: A media query string ready to be used with most styling solutions, which matches screen widths greater than and including the screen size given by the breakpoint key. #### Examples @@ -123,7 +123,7 @@ const styles = theme => ({ #### Returns -`media query`: A media query string ready to be used with JSS, which matches screen widths less than and including the screen size given by the breakpoint key. +`media query`: A media query string ready to be used with most styling solutions, which matches screen widths less than and including the screen size given by the breakpoint key. #### Examples @@ -149,7 +149,7 @@ const styles = theme => ({ #### Returns -`media query`: A media query string ready to be used with JSS, which matches screen widths greater than and including the screen size given by the breakpoint key. +`media query`: A media query string ready to be used with most styling solutions, which matches screen widths including the screen size given by the breakpoint key. #### Examples @@ -176,7 +176,7 @@ const styles = theme => ({ #### Returns -`media query`: A media query string ready to be used with JSS, which matches screen widths greater than the screen size given by the breakpoint key in the first argument and less than the the screen size given by the breakpoint key in the second argument. +`media query`: A media query string ready to be used with most styling solutions, which matches screen widths greater than the screen size given by the breakpoint key in the first argument and less than the the screen size given by the breakpoint key in the second argument. #### Examples