graycoreio/daffodil

View on GitHub
apps/daffio/src/scss/component-themes.scss

Summary

Maintainability
Test Coverage
@use '../app/content/why-pwa/components/feature-comparison/feature-comparison-theme' as feature-comparison;
@use '../app/core/footer/simple-footer/simple-footer-theme' as simple-footer;
@use '../app/core/footer/footer/footer-theme' as footer;
@use '../app/core/footer/sub-footer/sub-footer-theme' as sub-footer;
@use '../app/docs/components/table-of-contents/table-of-contents-theme' as toc;
@use '../app/docs/api/components/api-list/api-list-theme' as api-list;
@use '../app/docs/api/components/api-list-section/api-list-section-theme' as api-list-section;
@use '../app/docs/api/components/api-package/api-package-theme' as api-package;
@use '../app/newsletter/newsletter-theme' as newsletter;
@use '../app/core/sidebar/components/sidebar-footer/sidebar-footer-theme' as sidebar-footer;
@use '../app/core/header/components/header/header-theme' as header;

@mixin component-themes($theme) {
    @include simple-footer.daffio-simple-footer-theme($theme);
    @include footer.daffio-footer-theme($theme);
    @include sub-footer.daffio-sub-footer-theme($theme);
    @include feature-comparison.daffio-feature-comparison-theme($theme);
    @include toc.daffio-table-of-contents-theme($theme);
    @include api-list.daffio-api-list-theme($theme);
    @include api-list-section.daffio-api-list-section-theme($theme);
    @include api-package.daffio-api-package-theme($theme);
    @include newsletter.daffio-newsletter-theme($theme);
    @include sidebar-footer.daffio-sidebar-footer-theme($theme);
    @include header.daffio-header-theme($theme);
}