mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-29 10:40:12 +00:00
feat: remove dialog animation
This commit is contained in:
parent
5e3c1c148c
commit
ef41321c8b
1 changed files with 20 additions and 0 deletions
|
|
@ -4,4 +4,24 @@ md-dialog.fullscreen-dialog {
|
|||
width: 100%;
|
||||
height: 100%;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
$swift-ease-out-duration: 0;
|
||||
$swift-ease-out-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
|
||||
$swift-ease-out: all $swift-ease-out-duration $swift-ease-out-timing-function;
|
||||
|
||||
md-dialog {
|
||||
|
||||
&.md-transition-in {
|
||||
opacity: 1;
|
||||
// transition: $swift-ease-out;
|
||||
transition: none;
|
||||
transform: translate(0, 0) scale(1.0);
|
||||
}
|
||||
&.md-transition-out {
|
||||
opacity: 0;
|
||||
// transition: $swift-ease-out;
|
||||
transition: none;
|
||||
transform: translate(0, 100%) scale(0.2);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue