diff --git a/web/projects/ui/src/app/routes/portal/routes/system/backups/modals/history.component.ts b/web/projects/ui/src/app/routes/portal/routes/system/backups/modals/history.component.ts index 3a51b32ca..3a4e01c90 100644 --- a/web/projects/ui/src/app/routes/portal/routes/system/backups/modals/history.component.ts +++ b/web/projects/ui/src/app/routes/portal/routes/system/backups/modals/history.component.ts @@ -140,6 +140,7 @@ import { HasErrorPipe } from '../pipes/has-error.pipe' .date, .duration { + order: 1; color: var(--tui-text-02); } diff --git a/web/projects/ui/src/app/routes/portal/routes/system/settings/routes/ssh/table.component.ts b/web/projects/ui/src/app/routes/portal/routes/system/settings/routes/ssh/table.component.ts index ef131258f..45475981d 100644 --- a/web/projects/ui/src/app/routes/portal/routes/system/settings/routes/ssh/table.component.ts +++ b/web/projects/ui/src/app/routes/portal/routes/system/settings/routes/ssh/table.component.ts @@ -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); + } } } `, diff --git a/web/projects/ui/src/index.html b/web/projects/ui/src/index.html index 0248b7462..dd037db64 100644 --- a/web/projects/ui/src/index.html +++ b/web/projects/ui/src/index.html @@ -1,4 +1,4 @@ - + @@ -21,10 +21,40 @@ /> + - + + Start OS +

Loading

+ +
diff --git a/web/projects/ui/src/styles.scss b/web/projects/ui/src/styles.scss index 60bf54d4d..61c06c070 100644 --- a/web/projects/ui/src/styles.scss +++ b/web/projects/ui/src/styles.scss @@ -42,6 +42,7 @@ hr { tui-root._mobile & { // For tui-tab-bar height: calc(100vh - 3.875rem - var(--tui-height-l)); + padding: 1rem; } }