DEV Community

Discussion on: Nesting in SASS

Collapse
 
aurelkurtula profile image
aurel kurtula • Edited

Great tutorial. A fantastic tip on this:

   .sidebar {
       position: fixed;
       height: 100%;

       &-list {
           background-color: white;

           &-link {
               text-decoration: none;
            }
        }
    }

Never thought about doing that.

Collapse
 
sarah_chima profile image
Sarah Chima

Thank you😊