Skip to content

Instantly share code, notes, and snippets.

@victorfern91
Created July 11, 2018 16:02
Show Gist options
  • Save victorfern91/ce648af0dfc35ec9aab3a4774938776d to your computer and use it in GitHub Desktop.
Save victorfern91/ce648af0dfc35ec9aab3a4774938776d to your computer and use it in GitHub Desktop.
.base-component {
/* base style for this component and it will work for any screen size */
}
.sm > .base-component {
/* style that will be applied in this component for small sizes */
}
.md > .base-component {
/* style that will be applied in this component for medium sizes */
}
.lg > .base-component {
/* style that will be applied in this component for large sizes */
}
.xl > .base-component {
/* style that will be applied in this component for extra-large sizes */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment