Skip to content

Instantly share code, notes, and snippets.

@fatihtoprak
Last active June 10, 2021 12:25
Show Gist options
  • Select an option

  • Save fatihtoprak/ea9639dc20a9de8e54d2ef2f835de7c4 to your computer and use it in GitHub Desktop.

Select an option

Save fatihtoprak/ea9639dc20a9de8e54d2ef2f835de7c4 to your computer and use it in GitHub Desktop.

SCSS

.person {
  &__hand {/* Styles */}

  &__leg {/* Styles */}

  &--male {
    /* Styles */

    &__hand {
      /* Styles */

      &--left {/* Styles */}

      &--right {/* Styles */}
    }

    &__leg {
      /* Styles */

      &--left {/* Styles */}

      &--right {/* Styles */}
    }
  }

  &--female {
    /* Styles */

    &__hand {
      /* Styles */

      &--left {/* Styles */}

      &--right {/* Styles */}
    }

    &__leg {
      /* Styles */

      &--left {/* Styles */}

      &--right {/* Styles */}
    }
  }
}

Çıktıları

.person__hand {/* Styles */}

.person__leg {/* Styles */}

.person--male {/* Styles */}

.person--male__hand {/* Styles */}

.person--male__hand--left {/* Styles */}

.person--male__hand--right {/* Styles */}

.person--male__leg {/* Styles */}

.person--male__leg--left {/* Styles */}

.person--male__leg--right {/* Styles */}

.person--female {/* Styles */}

.person--female__hand {/* Styles */}

.person--female__hand--left {/* Styles */}

.person--female__hand--right {/* Styles */}

.person--female__leg {/* Styles */}

.person--female__leg--left {/* Styles */}

.person--female__leg--right {/* Styles */}
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment