We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
In your demo, could you please provide some examples of the intended usage of custom classes for styling?
Thank you
The text was updated successfully, but these errors were encountered:
Hello, @dicksonca Example of calling component in your app:
`<angular-breadcrumbs-light [routes]="routes" notFoundIcon='❗' noTitlesOnMobile="true" [customClasses]="{ root: 'customRootClass', currentLink: 'customCurrentLinkClass', separator: 'customSeparatorClass' }"
`
And add this classes in your global stylesheet (by default: src/styles.css):
`.customRootClass { margin: 40px; }
.customCurrentLinkClass { color: green !important; }
.customSeparatorClass { color: red; position: relative; }
.customSeparatorClass::after { color: yellow; display: block; content: 'sep text from css' }`
I've implemented this demo here.
You can also find all available classes here.
Sorry, something went wrong.
No branches or pull requests
Hello,
In your demo, could you please provide some examples of the intended usage of custom classes for styling?
Thank you
The text was updated successfully, but these errors were encountered: