[ui] fix detail column sizing

feat/vaults
Tomáš Mládek 2022-04-09 19:58:44 +02:00
parent ab345bf50b
commit fb2276b32d
No known key found for this signature in database
GPG Key ID: 65E225C8B3E2ED8A
1 changed files with 7 additions and 3 deletions

View File

@ -44,9 +44,7 @@
$: allTypeAddresses = ($entity?.attr["IS"] || []).map((attr) => attr.value.c);
$: allTypeEntries = query(
`(matches (in ${allTypeAddresses
.map((addr) => `@${addr}`)
.join(" ")}) ? ?)`
`(matches (in ${allTypeAddresses.map((addr) => `@${addr}`).join(" ")}) ? ?)`
).result;
let allTypes: { [key: string]: UpType } = {};
@ -407,6 +405,12 @@
}
}
.main-content .detail-col {
display: flex;
flex-direction: column;
flex-grow: 1;
}
.error {
color: red;
}