Skip to main content

Responsiveness

Introduction

To maintain Hybridplate’s reputation as a modern and useful boilerplate, the Hybridplate team created a responsive design for the entire app. The Hybridplate app can be used with mobile and other devices.

Use case

When developing a responsive web app, there are many options and best practices to consider. For Hybridplate, we used the @media css query to determine the style to apply. It can be seen in client > app > components > Header > NavBar.js.

 @media (max-width: ${({ theme }) => theme.mobile}) {
    display: none;
  }

note

It is recommended to use % units, when developing a responsive design.