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,
.duration {
order: 1;
color: var(--tui-text-02);
}

View File

@@ -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);
}
}
}
`,

View File

@@ -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>

View File

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