Posts by Bernardo Baumblatt • 149 points
3 posts
-
-1
votes1
answer67
viewsA: Add a CSS class to only one child element of the table row
From what we can see, the variable (toggle) that determines whether an element is marked is in the scope of the component, so it has the same value for all lines. You must put it in the Element…
-
1
votes2
answers1133
viewsA: Change Angular 9 material design color scheme
You should implement changing the.scss style as below: @import '~@angular/material/theming'; // Plus imports for other components in your app. // Include the common styles for Angular Material. We…
-
1
votes1
answer182
viewsA: How to improve angular performance with webpack or demand loading?
To organize an Angular application, the appropriate form is a good structuring of its modules. They should be divided into App, Core, Share and Features. The App, Shared and Core should be the only…