mirror of
https://github.com/google/pebble.git
synced 2025-06-11 04:23:10 +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
13
third_party/bourbon/functions/_px-to-em.scss
vendored
Normal file
13
third_party/bourbon/functions/_px-to-em.scss
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
// Convert pixels to ems
|
||||
// eg. for a relational value of 12px write em(12) when the parent is 16px
|
||||
// if the parent is another value say 24px write em(12, 24)
|
||||
|
||||
@function em($pxval, $base: $em-base) {
|
||||
@if not unitless($pxval) {
|
||||
$pxval: strip-units($pxval);
|
||||
}
|
||||
@if not unitless($base) {
|
||||
$base: strip-units($base);
|
||||
}
|
||||
@return ($pxval / $base) * 1em;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue