Skip to content

Instantly share code, notes, and snippets.

@lbvf50mobile
Created August 4, 2017 07:48
Show Gist options
  • Select an option

  • Save lbvf50mobile/bf249bd44cccbd919b58223689cbbb19 to your computer and use it in GitHub Desktop.

Select an option

Save lbvf50mobile/bf249bd44cccbd919b58223689cbbb19 to your computer and use it in GitHub Desktop.
pt_to_px_solved
.footer {
height: 48.7058823529px;
}
/**
* 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