mirror of
https://github.com/logto-io/logto.git
synced 2024-12-23 20:33:16 -05:00
fix(console): operation button align in api resource detail (#416)
This commit is contained in:
parent
3c0ff36817
commit
9a9166f45a
2 changed files with 5 additions and 2 deletions
|
@ -36,7 +36,10 @@
|
|||
}
|
||||
}
|
||||
|
||||
.operation {
|
||||
.operations {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
> *:not(:first-child) {
|
||||
margin-left: _.unit(3);
|
||||
}
|
||||
|
|
|
@ -85,7 +85,7 @@ const ApiResourceDetails = () => {
|
|||
<CopyToClipboard value={data.indicator} />
|
||||
</div>
|
||||
</div>
|
||||
<div className={styles.operation}>
|
||||
<div className={styles.operations}>
|
||||
<Button title="admin_console.api_resource_details.check_help_guide" />
|
||||
<ActionMenu
|
||||
buttonProps={{ icon: <More /> }}
|
||||
|
|
Loading…
Reference in a new issue