I am working with a reusable component called "two-column-layout-wrapper" that has its styles defined in the main .css file. In another module, I need to use this component but customize the width of two classes. How can I override these styles?
import { Component } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms';
import { Response } from '@angular/http';
@Component({
selector: 'italik-managepackages',
styles: [`
:host {
display: flex;
}
`],
template: `
<div two-column-layout-wrapper>
<div sidebar-component italik-managepackages-overview></div>
</div>
`
})
export class ManagePackagesComponent {
}