Skip to content

Instantly share code, notes, and snippets.

@niktariy
Created March 30, 2019 17:47
Show Gist options
  • Save niktariy/c5c7d22373e1d91c5ae2beb13aaa2c59 to your computer and use it in GitHub Desktop.
Save niktariy/c5c7d22373e1d91c5ae2beb13aaa2c59 to your computer and use it in GitHub Desktop.
@extend exemple
.error {
border: 1px #ff0;
background-color: #fdd;
}
.fatal-error {
@extend .error; // в CSS будет взят .fatal-error и дописан через запятую к .error
border-width: 5px;
}
.error, .fatal-error {
border: 1px #ff0;
background-color: #fdd;
}
.fatal-error {
border-width: 5px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment