Skip to content

Instantly share code, notes, and snippets.

@Avaray
Created November 2, 2017 01:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Avaray/59d5abb1fae4e4296780a1414663076e to your computer and use it in GitHub Desktop.
Save Avaray/59d5abb1fae4e4296780a1414663076e to your computer and use it in GitHub Desktop.
Pug // Condition in CSS in .pug partial file // https://stackoverflow.com/a/41618071/4415165
style
.
.someclass1{
font-size:10px;
}
.someclass2{
font-size:10px;
}
if options.key1=='a'
.
.someclass3{
font-size:10px;
}
else
.
.someclass3{
font-size:8px;
}
.
.someclass4{
font-size:10px;
}
.someclass5{
font-size:10px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment