0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-27 21:39:16 -05:00

fix(console): details page should not be shrinked (#1338)

This commit is contained in:
Xiao Yijun 2022-07-01 14:39:38 +08:00 committed by GitHub
parent b14f7ba2c0
commit d73663af27
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 17 deletions

View file

@ -62,13 +62,15 @@
} }
.details { .details {
display: flex; white-space: nowrap;
align-items: center;
> * {
display: inline-block;
}
> :not(:first-child) { > :not(:first-child) {
margin-left: _.unit(2); margin-left: _.unit(2);
} }
}
.type { .type {
background-color: var(--color-surface-variant); background-color: var(--color-surface-variant);
@ -89,3 +91,4 @@
} }
} }
} }
}

View file

@ -4,6 +4,7 @@
height: 100%; height: 100%;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
min-width: min-content;
> *:not(:first-child) { > *:not(:first-child) {
margin-top: _.unit(4); margin-top: _.unit(4);