1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Animating command palette entering

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2021-04-27 15:23:57 +03:00
parent d981968a60
commit a387058fe3
2 changed files with 2 additions and 2 deletions

View File

@ -63,6 +63,6 @@
} }
&.opacity-scale { &.opacity-scale {
@include animate-opacity-scale; @include animate-opacity-scale(100ms);
} }
} }

View File

@ -73,7 +73,7 @@ export class CommandContainer extends React.Component<{ clusterId?: string }> {
render() { render() {
return ( return (
<Dialog isOpen={!!this.commandComponent} animated={false} onClose={() => this.commandComponent = null} modal={false}> <Dialog isOpen={!!this.commandComponent} animated={true} onClose={() => this.commandComponent = null} modal={false}>
<div id="command-container"> <div id="command-container">
{this.commandComponent} {this.commandComponent}
</div> </div>