mirror of
https://github.com/google/pebble.git
synced 2025-08-26 08:17:31 -04: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
16
third_party/bourbon/addons/_size.scss
vendored
Normal file
16
third_party/bourbon/addons/_size.scss
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
@mixin size($size) {
|
||||
$height: nth($size, 1);
|
||||
$width: $height;
|
||||
|
||||
@if length($size) > 1 {
|
||||
$height: nth($size, 2);
|
||||
}
|
||||
|
||||
@if $height == auto or (type-of($height) == number and not unitless($height)) {
|
||||
height: $height;
|
||||
}
|
||||
|
||||
@if $width == auto or (type-of($width) == number and not unitless($width)) {
|
||||
width: $width;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue