Created
February 26, 2020 02:47
-
-
Save mtzrmzia/eda3c5e77ece6d7fce184eaabbd4307f to your computer and use it in GitHub Desktop.
Tailwind specificity
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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