Skip to content

Commit

Permalink
[docs] Improve theme.breakpoints description (#19065)
Browse files Browse the repository at this point in the history
  • Loading branch information
littleee authored and oliviertassinari committed Jan 3, 2020
1 parent 2f7b71c commit ee46512
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 ee46512

Please sign in to comment.