Removable footer, compact styling for particle creator
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import {Component} from '@angular/core';
|
||||
import {MatButton, MatIconButton} from "@angular/material/button";
|
||||
import {Component, inject} from '@angular/core';
|
||||
import {MatIconButton} from "@angular/material/button";
|
||||
import {MatCard, MatCardContent, MatCardHeader, MatCardTitle} from "@angular/material/card";
|
||||
import {MatTab, MatTabGroup} from "@angular/material/tabs";
|
||||
|
||||
@@ -7,11 +7,11 @@ import {ParticleData} from '../../models/particle.model';
|
||||
import {MatIcon} from '@angular/material/icon';
|
||||
import {ParticleManagerService} from '../../services/particle-manager.service';
|
||||
import {FrameManagerService} from '../../services/frame-manager.service';
|
||||
import {MatTooltipModule} from '@angular/material/tooltip';
|
||||
|
||||
@Component({
|
||||
selector: 'app-frames',
|
||||
imports: [
|
||||
MatButton,
|
||||
MatCard,
|
||||
MatCardContent,
|
||||
MatCardHeader,
|
||||
@@ -19,17 +19,15 @@ import {FrameManagerService} from '../../services/frame-manager.service';
|
||||
MatIcon,
|
||||
MatIconButton,
|
||||
MatTab,
|
||||
MatTabGroup
|
||||
],
|
||||
MatTabGroup,
|
||||
MatTooltipModule,
|
||||
],
|
||||
templateUrl: './frames.component.html',
|
||||
styleUrl: './frames.component.scss'
|
||||
})
|
||||
export class FramesComponent {
|
||||
|
||||
constructor(
|
||||
private particleManagerService: ParticleManagerService,
|
||||
private frameManagerService: FrameManagerService) {
|
||||
}
|
||||
private particleManagerService = inject(ParticleManagerService);
|
||||
private frameManagerService = inject(FrameManagerService);
|
||||
|
||||
/**
|
||||
* Get the particle data
|
||||
|
||||
Reference in New Issue
Block a user