mirror of
https://github.com/google/pebble.git
synced 2025-06-18 07:13:23 +00:00
Import the pebble dev site into devsite/
This commit is contained in:
parent
3b92768480
commit
527858cf4c
1359 changed files with 265431 additions and 0 deletions
15
third_party/bourbon/functions/_px-to-rem.scss
vendored
Normal file
15
third_party/bourbon/functions/_px-to-rem.scss
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
// Convert pixels to rems
|
||||
// eg. for a relational value of 12px write rem(12)
|
||||
// Assumes $em-base is the font-size of <html>
|
||||
|
||||
@function rem($pxval) {
|
||||
@if not unitless($pxval) {
|
||||
$pxval: strip-units($pxval);
|
||||
}
|
||||
|
||||
$base: $em-base;
|
||||
@if not unitless($base) {
|
||||
$base: strip-units($base);
|
||||
}
|
||||
@return ($pxval / $base) * 1rem;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue