Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
iamironman4279
/
my
like
0
Running
App
Files
Files
Community
main
my
/
scss
/
bootstrap
/
mixins
/
_size.scss
iamironman4279
Upload 183 files
d5469bf
verified
7 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
148 Bytes
// Sizing shortcuts
@mixin
size(
$width
,
$height
:
$width
) {
width
:
$width
;
height
:
$height
;
@include
deprecate(
"`size()`"
,
"v4.3.0"
,
"v5"
);
}