Browse Source

Merge pull request #24017 from abpframework/issue/24016

Angular - Fixing the lepton theme customization document
pull/24042/head
Fahri Gedik 4 months ago
committed by GitHub
parent
commit
03e846bc25
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 11
      docs/en/ui-themes/lepton/customizing-lepton-theme.md

11
docs/en/ui-themes/lepton/customizing-lepton-theme.md

@ -45,9 +45,16 @@ export const appConfig: ApplicationConfig = {
Import your style file to `src/style.scss`
```css
```scss
/* style.scss */
@import 'your-custom-style';
```
or
```scss
/* style.scss */
import 'your-custom-style';
@use 'your-custom-style';
```
Or add your style file to the `styles` arrays which in `angular.json` file

Loading…
Cancel
Save