alfresco-ng2-components/lib/core/login/components/login-dialog.component.scss
Denys Vuika a0926a38d8
Minor code and style fixes (#5398)
* type fixes

* import fixes

* fix typos

* fix warning for private props that init in ctor only

* typing fixes

* typing fixes

* style cleanup

* fix test template
2020-02-09 22:03:32 +00:00

17 lines
476 B
SCSS

@import '~@angular/material/theming';
@mixin adf-login-dialog-theme($theme) {
$primary: map-get($theme, primary);
$accent: map-get($theme, accent);
$warn: map-get($theme, warn);
$background: map-get($theme, background);
$foreground: map-get($theme, foreground);
$text-color-primary: mat-color($foreground, text);
.adf-login-dialog-content adf-login .adf-login-content .adf-login-card-wide {
padding: 0;
box-shadow: none;
}
}