fix: make logs page take up all space (#3030)

This commit is contained in:
Alex Inkin
2025-09-20 20:10:28 +07:00
committed by GitHub
parent 7eecf29449
commit b99f3b73cd
2 changed files with 8 additions and 2 deletions

View File

@@ -34,6 +34,12 @@ import { i18nPipe } from '../../i18n/i18n.pipe'
<logs-window />
`,
styles: `
:host {
display: flex;
flex-direction: column;
height: 100%;
}
section {
border-radius: 0.25rem;
padding: 1rem;
@@ -48,7 +54,7 @@ import { i18nPipe } from '../../i18n/i18n.pipe'
logs-window {
display: flex;
flex-direction: column;
height: 18rem;
flex: 1;
padding: 1rem;
margin: 0 1.5rem auto;
text-align: left;

View File

@@ -24,7 +24,7 @@ import { StateService } from 'src/app/services/state.service'
<app-initializing [progress]="progress()" />
`,
providers: [provideSetupLogsService(ApiService)],
styles: ':host { padding: 1rem; }',
styles: ':host { height: 100%; }',
imports: [InitializingComponent],
})
export default class InitializingPage {