bougarfaoui / ui-carousel

🎨 Angular carousel Component 🔥
https://bougarfaoui.github.io/ui-carousel/
MIT License
79 stars 53 forks source link

Removing Orange background? #11

Open sirwesley opened 6 years ago

sirwesley commented 6 years ago

Issue:

I'm struggling to target and remove this background color of orange. Can this be defaulted to something a color that isn't so jarring on load? or at least a color that has something I can rhyme with? why was orange chosen here?

File Location:

./node_modules/ui-carousel/src/ui-carousel-item/ui-carousel-item.component.ts

.ui-carousel-item[_ngcontent-c#] {
    height: 100%;
    width: 100%;
    background: orange;
    position: absolute;
    overflow: hidden;
}

Possible Fixes

*Note: New to anuglar5 so still trying to figure out exactly what's going on here, cause my standard way of doing SCSS isn't working out so well with all these inline component styles.

12 Pull Request Added

msarsha commented 6 years ago

/deep/ is depracated.

sirwesley commented 6 years ago

switched to ::ng-deep for the time being until there's a fix that lets me target this style property.