Skip to content

Instantly share code, notes, and snippets.

@niktariy
Last active March 30, 2019 12:28
Show Gist options
  • Save niktariy/52c86ad066fcef10c4d1c9a0d8bc15fe to your computer and use it in GitHub Desktop.
Save niktariy/52c86ad066fcef10c4d1c9a0d8bc15fe to your computer and use it in GitHub Desktop.
Sass nesting css properties
> 1%
last 2 versions
// ----
// libsass (v3.5.4)
// ----
.block {
font: {
size: 24px;
family: "Proxima Nova", sans-serif;
weight: 600;
};
background: {
color: pink;
size: 100%;
};
.box {
border: {
width: 1px;
color: #eee;
radius: 5px;
};
}
}
.block {
font-size: 24px;
font-family: "Proxima Nova", sans-serif;
font-weight: 600;
background-color: pink;
background-size: 100%;
}
.block .box {
border-width: 1px;
border-color: #eee;
border-radius: 5px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment