How to declare more deeper sub-element?
.component .parent-element .elementThe selector you want to insertThe element you want to style
See example
.btn .wrapper .iconThe selector you want to insertThe element you want to style
- SASS
+component('.btn')
+register
+element('.wrapper')
+element('.icon')
display: inline-flex
background-color: grey
+_____________________
+element('.wrapper')
display: inline-block
position: relative
+_____________________
+element('.icon')
position: absolute
- CSS
.btn {
display: inline-flex;
background-color: grey;
}
.btn .wrapper {
display: inline-block;
position: relative;
}
.btn .wrapper .icon {
position: absolute;
}
More info: +element, +register, +component, separator +___