Skip to content

Instantly share code, notes, and snippets.

@alfredomtzrmz
Created February 26, 2020 02:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alfredomtzrmz/eda3c5e77ece6d7fce184eaabbd4307f to your computer and use it in GitHub Desktop.
Save alfredomtzrmz/eda3c5e77ece6d7fce184eaabbd4307f to your computer and use it in GitHub Desktop.
Tailwind specificity
/* Otras clases (componentes) */
.btn {
color: blue;
}
/* Media Queries */
@media (min-width: 640px) {
.sm\:text-base {
font-size: 16px;
}
.sm\:text-lg {
font-size: 20px;
}
}
@media (min-width: 768px) {
.md\:text-base {
font-size: 16px;
}
.md\:text-lg {
font-size: 20px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment