app-styles-subsection

Este widget nos sirve para rápidamente agregar una nueva sub sección en los styles.

    <app-styles-subsection
     [subSection]="temBgStyles"
     [_areGrouped]="true" [groupTitle]="'bg style'">
  
     <ng-template #temBgStyles>
     
          <app-each-sub [subContent]="temBgOrImg" [_title]="'background color or image'" [isCollapsed]="true" [subSectionID]="'bgImgOrColor'">
            <ng-template #temBgOrImg>
              <div class="content-wrapper-90">
                AQUI_EL_CONTENIDO
              </div>
            </ng-template>
          </app-each-sub>
          
      </ng-template>

</app-styles-subsection>
<app-each-sub [subContent]="temBgOrImg" [_title]="'background color or image'" [isCollapsed]="true" [subSectionID]="'bgImgOrColor'">
    <ng-template #temBgOrImg>
      <div class="content-wrapper-90">
        AQUI_EL_CONTENIDO
      </div>
    </ng-template>
  </app-each-sub>

Last updated

Was this helpful?