Universis Project Theme
@universis/theme package contains the core theme for building client applications or components for Universis project
Import @universis/theme as submodule in any angular cli project by replacing newProjectRoot as already configured in your angular.json
git submodule add https://gitlab.com/universis/theme.git
Add the following entry to tsconfig.app.json#compilerOptions.paths:
{
"compilerOptions": {
"paths": {
"@universis/theme/*": [
"
]
...
}
}
}
Import @universis/theme/scss/universis.scss in your style.scss
@import "~@universis/theme/scss/universis.scss";
or modify your angular.json to use either @universis/theme/scss/universis.scss or @universis/theme/scss/universis.css
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
...
"styles": [
...
"@universis/theme/scss/universis.scss",
...
]
}
...
}
...
}