wip fields Eqlair

This commit is contained in:
Tykayn 2025-10-07 15:29:16 +02:00 committed by tykayn
parent 74fa59a2e1
commit 870edba462
7 changed files with 133 additions and 0 deletions

View file

@ -0,0 +1,8 @@
:host {
.wip-block {
background: #f3fbff;
padding: 2rem;
border-radius: 0.5rem;
border: 1px solid #ccc;
}
}

View file

@ -0,0 +1,3 @@
<div class="wip-block">
<ng-content></ng-content>
</div>

View file

@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { WipBlock } from './wip-block';
describe('WipBlock', () => {
let component: WipBlock;
let fixture: ComponentFixture<WipBlock>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [WipBlock]
})
.compileComponents();
fixture = TestBed.createComponent(WipBlock);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View file

@ -0,0 +1,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'sae-wip-block',
imports: [],
templateUrl: './wip-block.html',
styleUrl: './wip-block.scss'
})
export class WipBlock {
}