mirror of
https://github.com/mrclay/minify.git
synced 2025-08-07 22:56:33 +02:00
29 lines
426 B
SCSS
29 lines
426 B
SCSS
/*! preserving comment */
|
|
|
|
// Variable
|
|
$primary-color: hotpink;
|
|
|
|
// Mixin
|
|
@mixin border-radius($radius) {
|
|
-webkit-border-radius: $radius;
|
|
-moz-border-radius: $radius;
|
|
border-radius: $radius;
|
|
}
|
|
|
|
.my-element {
|
|
color: $primary-color;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.my-other-element {
|
|
@include border-radius(6px);
|
|
}
|
|
|
|
/* import include -> */
|
|
@import "_included";
|
|
/* <- import included */
|
|
|
|
/*
|
|
a normal comment.
|
|
*/ |