mediaquery.style

Mobile first

The min-width media query is often used with mobile first design in mind. This means your base styles are for smaller screens and you place styles for larger displays inside the media query.

@media (min-width: 768px) {
}