This library is still in development and is available only for internal usage at VTEX.
Skip to main content

Developing

Version: 0.132.0

Styling

The admin-ui StyleObject lets you style elements while consuming values from the theme.

Loading...

Design tokens​

Design tokens can be consumed from specific properties within the StyleObject. They are the recommended values for those props if you desire to reach consistency between apps. These are defined within our default theme, and you can check all the available design tokens on the link.

Loading...

Nesting​

Sometimes it’s useful to nest selectors to target elements inside the current class or React component. An example with an element selector is shown below.

Loading...

className​

Scoped classNames can also be created and reused multiple times.

Loading...

Pseudo-classes​

You can use all CSS Pseudo-classes such as :hover, :active, :focus and more. For example:

Loading...

Pseudo-elements​

You can use all CSS Pseudo-elements such as :before and :after. For example:

Loading...

Animations​

Keyframes​

CSS animations are supported. You can use the keyframes function to configure the sequence timing.

Loading...

Responsive design​

Responsive aliases​

Admin UI has five responsive aliases that guide you while authoring responsive layouts.

aliasmin-width emmin-width pxmax-width emmax-width px
@tablet48em768px--
@tabletOnly48em768px64em1024px
@desktop64em1024px--
@desktopOnly64em1024px75em1200px
@widescreen75em1200px--

In the example - the text content changes, representing the current screen size. You can resize your browser window to see the result.

Loading...
πŸ’‘ What happens under the hood?

The responsive alias string will be replaced by a media query.
It replaces the pattern @[alias] by @media (min-width: theme.breakpoints.[alias]).
For exemple, @tablet will be replaced by @media (min-width: 48em).


The same idea applies to the only aliases! The diference is that it set the next breakpoint's min-width as its max-width, creating a interval.
For exemple, @tabletOnly will be replaced by @media (min-width: 48em) and (max-width: 64em).

Mental model​

Our styles have a mobile-first mindset. It means that every style that you write targets mobile by default. Each responsive alias targets all others above it so that you can work in optimizing your layout for larger screens. In other words, always work optimizing space.

The Box in the example has the $s padding for all screens:

<Box
csx={{
padding: '$s',
}}
/>

If we add the @tablet rule, the padding will be $m for tablets and above - which means that it will remain $s for screens smaller than @tablet. The logic is still the same for other breakpoints.

<Box
csx={{
padding: '$s',
'@tablet': {
padding: '$m',
},
}}
/>

Custom media queries​

The responsive aliases can cover most of the use cases, but custom media queries are allowed if you want to target specific devices on your design. For example:

// declaration
const iPhoneXRLandscape = `
@media only screen
and (device-width : 414px)
and (device-height : 896px)
and (-webkit-device-pixel-ratio : 2)
and (orientation : landscape)
`

// usage
const layout = style({
// ... component styles,
[iPhoneXRLandscape]: {
// ... device specyfic styles
},
})

Responsive values [deprecated]​

A responsive value is a deprecated approach in which properties can accept an array of values. Each position of the array correspond to the value on each breakpoint, following the sequence:

[mobile, tablet, desktop, widescreen]

To have a <Box> full width while on mobile, and half on tablet and above:

Loading...

You can use the value null to skip breakpoints:

Loading...

Why are we deprecating this?​

The main reasons are:

  • Multiple responsive styles are harder to write, learn, and understand.
  • Less performant to parse.
  • Library complexity overhead.

To migrate to the aliases, you need to place the styles in the correct category.

// with responsive values
const style = {
bg: '$primary',
color: '$primary',
padding: [10, null, null, 20],
margin: [5, null, 10, 15],
}

// with aliases
const style = {
bg: '$primary',
color: '$primary',
padding: 10,
margin: 5,
'@desktop': {
margin: 10,
},
'@widescreen': {
padding: 20,
margin: 15,
},
}

Additional resources​