Skip to content

Commit

Permalink
[docs] Improve theme.breakpoints description (mui#19065)
Browse files Browse the repository at this point in the history
  • Loading branch information
littleee authored and m4theushw committed Jan 6, 2020
1 parent 958955e commit edd0aba
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/src/pages/customization/breakpoints/breakpoints.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ In the following demo, we change the rendered DOM element (*em*, <u>u</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

Expand All @@ -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

Expand All @@ -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

Expand All @@ -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

Expand Down

0 comments on commit edd0aba

Please sign in to comment.