nested scss, css

why does the nested scss not working but plain css does?

working

            .text-container {
                &:hover {
                    .text-container__name {
                        background-color: blue;
                    }
                }
            }


not working

            .text-container {
                &:hover {
                    &__name {
                        background-color: blue;
                    }
                }
            }
Was this page helpful?