mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
chore: address comments
This commit is contained in:
@@ -140,6 +140,7 @@ import { HasErrorPipe } from '../pipes/has-error.pipe'
|
||||
|
||||
.date,
|
||||
.duration {
|
||||
order: 1;
|
||||
color: var(--tui-text-02);
|
||||
}
|
||||
|
||||
|
||||
@@ -62,7 +62,7 @@ import { ApiService } from 'src/app/services/api/embassy-api.service'
|
||||
styles: `
|
||||
:host-context(tui-root._mobile) {
|
||||
tr {
|
||||
grid-template-columns: 2fr 1fr;
|
||||
grid-template-columns: 3fr 2fr;
|
||||
}
|
||||
|
||||
td:only-child {
|
||||
@@ -94,7 +94,11 @@ import { ApiService } from 'src/app/services/api/embassy-api.service'
|
||||
.algorithm {
|
||||
order: 5;
|
||||
text-align: right;
|
||||
color: var(--tui-text-02);
|
||||
|
||||
&::before {
|
||||
content: 'Algorithm: ';
|
||||
color: var(--tui-text-02);
|
||||
}
|
||||
}
|
||||
}
|
||||
`,
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<!DOCTYPE html>
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
@@ -21,10 +21,40 @@
|
||||
/>
|
||||
<link rel="manifest" href="manifest.webmanifest" />
|
||||
<meta name="theme-color" content="#ff5b71" />
|
||||
<style>
|
||||
html {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
color: #fff;
|
||||
background: #222428;
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
app-root {
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 1rem;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<app-root></app-root>
|
||||
<app-root>
|
||||
<img
|
||||
src="assets/img/icon.png"
|
||||
style="width: 8rem; height: 8rem"
|
||||
alt="Start OS"
|
||||
/>
|
||||
<h1>Loading</h1>
|
||||
<progress></progress>
|
||||
</app-root>
|
||||
<noscript>
|
||||
Please enable JavaScript to continue using this application.
|
||||
</noscript>
|
||||
|
||||
@@ -42,6 +42,7 @@ hr {
|
||||
tui-root._mobile & {
|
||||
// For tui-tab-bar
|
||||
height: calc(100vh - 3.875rem - var(--tui-height-l));
|
||||
padding: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user