From e37ac3250d17c1cfb05002898eb70c6f4ff0c5f9 Mon Sep 17 00:00:00 2001 From: Jan-Marlon Leibl Date: Wed, 18 Dec 2024 12:00:05 +0100 Subject: [PATCH] Style employee list --- src/app/services/auth.service.spec.ts | 16 ++++++++++++++++ tailwind.config.js | 11 +++++++++++ 2 files changed, 27 insertions(+) create mode 100644 src/app/services/auth.service.spec.ts create mode 100644 tailwind.config.js diff --git a/src/app/services/auth.service.spec.ts b/src/app/services/auth.service.spec.ts new file mode 100644 index 0000000..f1251ca --- /dev/null +++ b/src/app/services/auth.service.spec.ts @@ -0,0 +1,16 @@ +import { TestBed } from '@angular/core/testing'; + +import { AuthService } from './auth.service'; + +describe('AuthService', () => { + let service: AuthService; + + beforeEach(() => { + TestBed.configureTestingModule({}); + service = TestBed.inject(AuthService); + }); + + it('should be created', () => { + expect(service).toBeTruthy(); + }); +}); diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..cf32239 --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,11 @@ +/** @type {import('tailwindcss').Config} */ +module.exports = { + content: [ + './src/**/*.{html,ts,css,scss,sass,less,styl,.component.html}', + ], + theme: { + extend: {}, + }, + plugins: [], +} +