Completely rewrote options script.
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
@import "bootswatch/paper/bootswatch";
|
||||
@import "bootswatch/paper/variables";
|
||||
@import "variables";
|
||||
@import "partials/_animations";
|
||||
|
||||
body {
|
||||
min-width: 357px;
|
||||
|
||||
17
assets/less/partials/_animations.less
Normal file
17
assets/less/partials/_animations.less
Normal file
@@ -0,0 +1,17 @@
|
||||
.alert-enter {
|
||||
opacity: 0.01;
|
||||
transition: opacity 1s ease-in;
|
||||
}
|
||||
|
||||
.alert-enter.alert-enter-active {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.alert-leave {
|
||||
opacity: 1;
|
||||
transition: opacity 1s ease-in;
|
||||
}
|
||||
|
||||
.alert-leave.alert-leave-active {
|
||||
opacity: 0.01;
|
||||
}
|
||||
Reference in New Issue
Block a user