[ADF-5406] SCSS and HTML template path fixes (#7063)

* remove useless mixin

* fix scss paths

* style fixes

* fix styles

* style fixes

* style fixes

* style fixes

* style fixes

* insights fixes

* css and template path fixes

* bug fixes
This commit is contained in:
Denys Vuika
2021-06-01 09:21:00 +01:00
committed by GitHub
parent 9e0000a307
commit e94b2f99bd
229 changed files with 557 additions and 934 deletions

View File

@@ -1,10 +1,5 @@
@import '~@angular/material/theming';
@mixin adf-userinfo-theme($theme) {
$primary: map-get($theme, primary);
$accent: map-get($theme, accent);
$warn: map-get($theme, warn);
$foreground: map-get($theme, foreground);
.adf {
@@ -21,7 +16,7 @@
&-userinfo-name {
padding: 0 5px;
@media screen and ($mat-small) {
@media screen and (max-width: 959px) {
display: none;
}
}
@@ -105,7 +100,7 @@
display: flex;
justify-content: space-between;
@media screen and ($mat-xsmall) {
@media screen and (max-width: 599px) {
padding: 10px;
}
}

View File

@@ -28,7 +28,6 @@ import { MatMenuTrigger, MenuPositionX, MenuPositionY } from '@angular/material/
@Component({
selector: 'adf-userinfo',
styleUrls: ['./user-info.component.scss'],
templateUrl: './user-info.component.html',
encapsulation: ViewEncapsulation.None
})