Removable footer, compact styling for particle creator

This commit is contained in:
2025-12-27 21:04:55 +01:00
parent d1ff7b3f88
commit d9b60d8a94
13 changed files with 175 additions and 195 deletions
@@ -0,0 +1,10 @@
import {Injectable, signal} from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class FooterService {
public hideFooter = signal<boolean>(false);
}