Style employee list

This commit is contained in:
Hop In, I Have Puppies AND WiFi 2024-12-18 12:00:05 +01:00 committed by Phan Huy Tran
parent da378e7555
commit e37ac3250d
2 changed files with 27 additions and 0 deletions

View File

@ -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();
});
});

11
tailwind.config.js Normal file
View File

@ -0,0 +1,11 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/**/*.{html,ts,css,scss,sass,less,styl,.component.html}',
],
theme: {
extend: {},
},
plugins: [],
}