Created
January 10, 2016 18:58
-
-
Save msrivastav13/818972e3ea91a50782f4 to your computer and use it in GitHub Desktop.
simple component showing how to use design tokens
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
<aura:component implements="force:appHostable"> | |
<div> | |
<p>How you doing ?</p> | |
</div> | |
</aura:component> |
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
.THIS p{ | |
font-family: token(myBodyTextFontFace); | |
font-weight: token(myBodyTextFontWeight); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment