11 lines
296 B
SCSS
11 lines
296 B
SCSS
// Page mixins
|
|
// *******************************************************************************
|
|
|
|
@import '../pages/mixins';
|
|
|
|
@mixin template-pages-theme($background, $color: null) {
|
|
// include page related mixins
|
|
@include app-chat-theme($background);
|
|
@include front-theme($background);
|
|
}
|