1
0
mirror of https://github.com/mrclay/minify.git synced 2025-08-07 22:56:33 +02:00
Files
minify/tests/_test_files/main.scss
Elan Ruusamäe 2bd69ca5b1 test scssphp functionality
tested cache dependencies
2016-10-13 12:21:09 +03:00

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.
*/