Created
February 26, 2020 02:59
-
-
Save mtzrmzia/568e3c09865e04015a03d1bc55f48a5d to your computer and use it in GitHub Desktop.
Utility + componentized classes
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
/* Clases de compononentes */ | |
.btn { | |
font-size: 16px; | |
} | |
/* Utility Classes */ | |
.large-text { | |
@media screen and (min-width: 700px) { | |
font-size: 20px; | |
} | |
@media screen and (min-width: 700px) { | |
font-size: 24px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment