This commit is contained in:
syuilo 2023-01-02 09:43:41 +09:00
parent d24462295f
commit 9f3b93929d
2 changed files with 2 additions and 36 deletions

View File

@ -13,11 +13,11 @@
<div class="body"> <div class="body">
<div class="name">{{ token.name }}</div> <div class="name">{{ token.name }}</div>
<div class="description">{{ token.description }}</div> <div class="description">{{ token.description }}</div>
<div class="_keyValue"> <div class="">
<div>{{ i18n.ts.installedDate }}:</div> <div>{{ i18n.ts.installedDate }}:</div>
<div><MkTime :time="token.createdAt"/></div> <div><MkTime :time="token.createdAt"/></div>
</div> </div>
<div class="_keyValue"> <div class="">
<div>{{ i18n.ts.lastUsedDate }}:</div> <div>{{ i18n.ts.lastUsedDate }}:</div>
<div><MkTime :time="token.lastUsedAt"/></div> <div><MkTime :time="token.lastUsedAt"/></div>
</div> </div>

View File

@ -246,32 +246,6 @@ hr {
} }
} }
._inputs {
display: flex;
margin: 32px 0;
&:first-child {
margin-top: 8px;
}
&:last-child {
margin-bottom: 8px;
}
> * {
flex: 1;
margin: 0 !important;
&:not(:first-child) {
margin-left: 8px !important;
}
&:not(:last-child) {
margin-right: 8px !important;
}
}
}
._panel { ._panel {
background: var(--panel); background: var(--panel);
border-radius: var(--radius); border-radius: var(--radius);
@ -472,14 +446,6 @@ hr {
} }
} }
._keyValue {
display: flex;
> * {
flex: 1;
}
}
._link { ._link {
color: var(--link); color: var(--link);
} }