refactor(app): styles refactor

This commit is contained in:
Dmitry Nehaychik 2017-04-28 15:11:22 +03:00
parent 44f2f562a9
commit afc24fe88f
16 changed files with 47 additions and 43 deletions

View file

@ -2,8 +2,10 @@
@import '../components/search-input/search-input.component.theme';
@import '../components/base-footer/base-footer.component.theme';
@mixin custom-components-theme() {
@include base-header-theme();
@include base-footer-theme();
@include search-input-theme();
// TODO: probably move this file into the components folder?
@mixin custom-components-theme($theme-name) {
@include base-header-theme($theme-name);
@include base-footer-theme($theme-name);
@include search-input-theme($theme-name);
}