Created
August 4, 2017 07:48
-
-
Save lbvf50mobile/bf249bd44cccbd919b58223689cbbb19 to your computer and use it in GitHub Desktop.
pt_to_px_solved
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
| .footer { | |
| height: 48.7058823529px; | |
| } |
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
| /** | |
| * Question: https://gist.github.com/lbvf50mobile/18fdad105815b354661dbe45fb79091c | |
| * Article: https://www.sitepoint.com/converting-typographic-units-sass/ | |
| * Thnx for @Akiyamka | |
| */ | |
| $screen_width_px: 414; | |
| $sketch_width_pt: 187; | |
| @function pt2px($num_pt){ | |
| @return ($screen_width_px/$sketch_width_pt)*$num_pt + 0px; | |
| } | |
| .footer { | |
| height: pt2px(22); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment