Last active
July 17, 2019 15:44
-
-
Save evdama/53519448e403df4ed9dceb518a9fb0ad to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| h1 { | |
| @apply text-2xl; | |
| } | |
| h2 { | |
| @apply text-xl; | |
| } | |
| h3 { | |
| @apply text-lg; | |
| } | |
| @screen md { | |
| h1 { | |
| @apply text-4xl; | |
| } | |
| h2 { | |
| @apply text-2xl; | |
| } | |
| h3 { | |
| @apply text-xl; | |
| } | |
| } | |
| @variants focus, hover, active, responsive { | |
| .rotate-minus-10 { | |
| transform: rotate(-10deg); | |
| } | |
| .rotate-10 { | |
| transform: rotate(10deg); | |
| } | |
| .rotate-minus-5 { | |
| transform: rotate(-5deg); | |
| } | |
| .rotate-5 { | |
| transform: rotate(5deg); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment