From 639fa74d43b8a5491806d6c9e60cd781d522d945 Mon Sep 17 00:00:00 2001 From: Johann150 Date: Sun, 18 Dec 2022 16:22:25 +0100 Subject: [PATCH] client: restyle app token view --- packages/client/src/pages/settings/apps.vue | 46 ++++++++++++++------- packages/client/src/style.scss | 8 ---- 2 files changed, 30 insertions(+), 24 deletions(-) diff --git a/packages/client/src/pages/settings/apps.vue b/packages/client/src/pages/settings/apps.vue index fb89604e9..4270315ee 100644 --- a/packages/client/src/pages/settings/apps.vue +++ b/packages/client/src/pages/settings/apps.vue @@ -11,19 +11,25 @@
-
{{ token.name }}
-
{{ token.description }}
-
-
{{ i18n.ts.installedDate }}:
-
-
-
-
{{ i18n.ts.lastUsedDate }}:
-
-
-
- -
+ + + + + + + + + + + + + + + + + + +
{{ i18n.ts.name }}:{{ token.name }}
{{ i18n.ts.description }}:{{ token.description }}
{{ i18n.ts.installedDate }}:
{{ i18n.ts.lastUsedDate }}:
{{ i18n.ts.details }}
    @@ -82,11 +88,19 @@ definePageMetadata({ } > .body { - width: calc(100% - 62px); + width: 100%; position: relative; - > .name { - font-weight: bold; + button { + position: absolute; + top: 0; + right: 0; + } + th { + text-align: right; + } + td { + text-align: left; } } } diff --git a/packages/client/src/style.scss b/packages/client/src/style.scss index b728ed3b8..cc90e650b 100644 --- a/packages/client/src/style.scss +++ b/packages/client/src/style.scss @@ -390,14 +390,6 @@ hr { } } -._keyValue { - display: flex; - - > * { - flex: 1; - } -} - ._link { color: var(--link); }