SU-SWS/stanford_profile

View on GitHub
themes/minimally_branded_subtheme/src/scss/components/lockup/_lockup.scss

Summary

Maintainability
Test Coverage

Class should be nested within its parent Class
Open

.su-lockup__cell1.empty-logo {

Force Element Nesting

Rule force-element-nesting will enforce the nesting of elements

Examples

When enabled, the following are disallowed:

div p {
  content: '';
}

.parent {
  &__child h1 {
    content: '';
  }
}

a[target="_blank"] span {
  content: '';
}

When enabled, the following are allowed:

div {
  p {
    content: '';
  }
}

.parent {
  &__child {
    h1 {
      content: '';
    }
  }
}

a[target="_blank"] {
  span {
    content: '';
  }
}

There are no issues that match your filters.

Category
Status