Welcome to Enlite Prime
Here is some guide to use this template. Click next to continue and back to previous or click on outside to skip it.
CSS media queries is the idiomatic approach to make your UI responsive.. We provide some CSS-in-JS helpers to do so. In the following demo, we change the background color (red, blue & green) based on the screen width.
descriptionsrc/app/containers/Layouts/demos/MediaQueries.js
Hidden works with a range of breakpoints e.g. xsUp or mdDown, or one or more breakpoints e.g. only='sm' or only='md', 'xl'. Ranges and individual breakpoints can be used simultaneously to achieve very customized behavior. The ranges are inclusive of the specified breakpoints.
innerWidth | xs | sm | md | lg | xl |
---|---|---|---|---|---|
width | xs | sm | md | lg | xl |
smUp | show | hide | |||
mdDown | hide | show |
Using any breakpoint up property, the given children will be hidden at or above the breakpoint.
Using any breakpoint down property, the given children will be hidden at or below the breakpoint.
Using the breakpoint only property, the given children will be hidden at the specified breakpoint(s).
Current width: width: lg;descriptionsrc/app/containers/Layouts/demos/Breakpoint.js
It is quite common to alter Grid at different responsive breakpoints, and in many cases, you want to hide some of those elements.
descriptionsrc/app/containers/Layouts/demos/BreakpointGrid.js
Here is some guide to use this template. Click next to continue and back to previous or click on outside to skip it.