@import './other\_sass\_file';
@import '/code', 'lists';
// Plain CSS @imports
@import "theme.css";
@import url(theme);
The .sass
or .sass
extension is optional.
@import './other\_sass\_file';
@import '/code', 'lists';
// Plain CSS @imports
@import "theme.css";
@import url(theme);
The .sass
or .sass
extension is optional.
.button {
···
}
.push-button {
@extend .button;
}
/\*
Block comments
Block comments
Block comments
\*/
// Line comments
$wk: -webkit-;
.rounded-box {
#{$wk}border-radius: 4px;
}
$defaultLinkColor: #46EAC2;
a {
color: $defaultLinkColor;
}