在scss中將祖母設為變數呼叫

.component { $c: &; // Set the parent as a variable padding: 2vw; &__card { background-color: #FFF; &:hover #{$c}__name { // Use the variable here color: #BADA55; } } }