Skip to content

Responsiveness

BreakpointMinimum Width
xs0
sm576px
md768px
lg992px
xl1200px
2xl1600px
3xl1920px

You can use these breakpoints in your CSS using media queries:

@media (min-width: 768px) {
/* Styles for medium screens and above */
}

The good news is we have a work-around for this limitation: Container Queries.

@container tng-root style(--tng-viewport-size-md: var(--tng-breakpoint-md)) {
/* Styles for medium screens and above */
}

Some of our styleguide is responsive out-of-the-box.