generated from amosproj/amos202Xss0Y-projname
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #50 from amosproj/feat/xd-48
feat: install tailwind
- Loading branch information
Showing
9 changed files
with
19,355 additions
and
15,213 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,16 @@ | ||
<app-nx-welcome></app-nx-welcome> <router-outlet></router-outlet> | ||
<ix-application> | ||
<ix-application-header name="My Application"> | ||
<div class="placeholder-logo" slot="logo"></div> | ||
</ix-application-header> | ||
<ix-menu> | ||
<ix-menu-item>Item 1</ix-menu-item> | ||
<ix-menu-item>Item 2</ix-menu-item> | ||
</ix-menu> | ||
<ix-content> | ||
<ix-content-header slot="header" header-title="My Content Page"> </ix-content-header> | ||
<div class="text-4xl">This text ist big because of a tailwind class</div> | ||
<div class="bg-custom-pink">The background is pink because of a custom color</div> | ||
<div class="test-custom-class">This text is centered because of a custom class</div> | ||
<router-outlet></router-outlet> | ||
</ix-content> | ||
</ix-application> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
import { ApplicationConfig } from '@angular/core'; | ||
import { ApplicationConfig, importProvidersFrom } from '@angular/core'; | ||
import { provideRouter } from '@angular/router'; | ||
import { IxModule } from '@siemens/ix-angular'; | ||
|
||
import { appRoutes } from './app.routes'; | ||
|
||
export const appConfig: ApplicationConfig = { | ||
providers: [provideRouter(appRoutes)], | ||
providers: [provideRouter(appRoutes), importProvidersFrom(IxModule.forRoot())], | ||
}; |
Oops, something went wrong.