You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You have two approaches to responsive design:
Media query mixins in variables.scss
Manual media queries in some components
Consider standardizing to use the mixins consistently:
// Instead of @media (max-width: vars.$breakpoint-m) {
// styles
}
// Use consistently @include below(medium) {
// styles
}