Skip to content

Use mobile first break points #9

Open
@salatielsql

Description

I like to develop with min-width instead of max-width. We can focus on mobile first like this:

.element {
  /* mobile styles */
  @media (min-width: 575px) {
    /* tablet styles */
  }
  @media (min-width: 768px) {
    /* desktop styles */
  }
}

Just an opinion here.

Originally posted by @caian-gums in #4

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions