chore: address comments

This commit is contained in:
waterplea
2024-07-09 13:45:04 +05:00
parent fd7c7ea6b7
commit 6aba166c82
4 changed files with 40 additions and 4 deletions

View File

@@ -140,6 +140,7 @@ import { HasErrorPipe } from '../pipes/has-error.pipe'
.date, .date,
.duration { .duration {
order: 1;
color: var(--tui-text-02); color: var(--tui-text-02);
} }

View File

@@ -62,7 +62,7 @@ import { ApiService } from 'src/app/services/api/embassy-api.service'
styles: ` styles: `
:host-context(tui-root._mobile) { :host-context(tui-root._mobile) {
tr { tr {
grid-template-columns: 2fr 1fr; grid-template-columns: 3fr 2fr;
} }
td:only-child { td:only-child {
@@ -94,7 +94,11 @@ import { ApiService } from 'src/app/services/api/embassy-api.service'
.algorithm { .algorithm {
order: 5; order: 5;
text-align: right; text-align: right;
color: var(--tui-text-02);
&::before {
content: 'Algorithm: ';
color: var(--tui-text-02);
}
} }
} }
`, `,

View File

@@ -1,4 +1,4 @@
<!DOCTYPE html> <!doctype html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="utf-8" /> <meta charset="utf-8" />
@@ -21,10 +21,40 @@
/> />
<link rel="manifest" href="manifest.webmanifest" /> <link rel="manifest" href="manifest.webmanifest" />
<meta name="theme-color" content="#ff5b71" /> <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> </head>
<body> <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> <noscript>
Please enable JavaScript to continue using this application. Please enable JavaScript to continue using this application.
</noscript> </noscript>

View File

@@ -42,6 +42,7 @@ hr {
tui-root._mobile & { tui-root._mobile & {
// For tui-tab-bar // For tui-tab-bar
height: calc(100vh - 3.875rem - var(--tui-height-l)); height: calc(100vh - 3.875rem - var(--tui-height-l));
padding: 1rem;
} }
} }