Can I achieve the desired CSS using SASS?
.menu IMG { padding-left: 10px; }
.menu .submenu IMG { padding-left: 20px; }
.menu .submenu .submenu IMG { padding-left: 30px; }
I need to add ".submenu" in each loop of the selector and update the padding accordingly.
Is it possible to accomplish this using SASS?