mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 12:11:56 +00:00
fix: make logs page take up all space (#3030)
This commit is contained in:
@@ -34,6 +34,12 @@ import { i18nPipe } from '../../i18n/i18n.pipe'
|
|||||||
<logs-window />
|
<logs-window />
|
||||||
`,
|
`,
|
||||||
styles: `
|
styles: `
|
||||||
|
:host {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
section {
|
section {
|
||||||
border-radius: 0.25rem;
|
border-radius: 0.25rem;
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
@@ -48,7 +54,7 @@ import { i18nPipe } from '../../i18n/i18n.pipe'
|
|||||||
logs-window {
|
logs-window {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
height: 18rem;
|
flex: 1;
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
margin: 0 1.5rem auto;
|
margin: 0 1.5rem auto;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ import { StateService } from 'src/app/services/state.service'
|
|||||||
<app-initializing [progress]="progress()" />
|
<app-initializing [progress]="progress()" />
|
||||||
`,
|
`,
|
||||||
providers: [provideSetupLogsService(ApiService)],
|
providers: [provideSetupLogsService(ApiService)],
|
||||||
styles: ':host { padding: 1rem; }',
|
styles: ':host { height: 100%; }',
|
||||||
imports: [InitializingComponent],
|
imports: [InitializingComponent],
|
||||||
})
|
})
|
||||||
export default class InitializingPage {
|
export default class InitializingPage {
|
||||||
|
|||||||
Reference in New Issue
Block a user