Skip to content

Instantly share code, notes, and snippets.

@omega-takai
Last active January 30, 2020 09:20
Show Gist options
  • Save omega-takai/e58221dbf7e33178bd54827c8350aa18 to your computer and use it in GitHub Desktop.
Save omega-takai/e58221dbf7e33178bd54827c8350aa18 to your computer and use it in GitHub Desktop.
$rootFontSize: 10; // px
$_ratio: 1 / $rootFontSize; // default 0.1
@function pix2rem($Number) {
$_computed: round($Number * $_ratio * 1000) / 1000;
@return #{$_computed}rem;
}
html {
font: {
size: #{$rootFontSize}px;
}
}
.main {
height: pix2rem(160); // 16rem
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment