added tailwind css

This commit is contained in:
2026-03-14 15:39:20 +01:00
parent 3ea7d5e68a
commit c15e8d9a57
8 changed files with 629 additions and 45 deletions
+2 -7
View File
@@ -2,7 +2,7 @@ import { Component, signal } from '@angular/core';
import { RouterOutlet } from '@angular/router';
import {IonicModule} from "@ionic/angular";
import { addIcons } from 'ionicons';
import { heart } from 'ionicons/icons';
import { heart, person, personAdd, home, people, chatbubbles, ribbon, cog } from 'ionicons/icons';
@Component({
selector: 'app-root',
@@ -12,11 +12,6 @@ import { heart } from 'ionicons/icons';
})
export class App {
constructor() {
/**
* Any icons you want to use in your application
* can be registered in app.component.ts and then
* referenced by name anywhere in your application.
*/
addIcons({ heart });
addIcons({ heart, personAdd, person, home, people, chatbubbles, ribbon, cog });
}
}