Skip to content

Instantly share code, notes, and snippets.

@EmpeRoar
Last active May 21, 2023 20:11
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 EmpeRoar/316ea85ef41df2f90b6692bd3d4ce50b to your computer and use it in GitHub Desktop.
Save EmpeRoar/316ea85ef41df2f90b6692bd3d4ce50b to your computer and use it in GitHub Desktop.
p {
border:10px solid green;
}
::ng-deep app-box {
p {
&:has(+app-table) {
border: 10px solid red;
}
&:has(+ table) {
border: 10px solid orange;
}
}
app-table-column > p:not(:has(+ table)) {
border: 10px solid purple;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment