Faster transition for the bottom sheet

This commit is contained in:
Lucas Verney 2018-06-27 11:21:29 +02:00
parent 989db3b787
commit ca526a9b71
1 changed files with 7 additions and 0 deletions

View File

@ -50,3 +50,10 @@ export default {
text-decoration: none;
}
</style>
<style>
.bottom-sheet.dialog {
webkit-transition: .1s cubic-bezier(.25, .8, .5, 1);
transition: .1s cubic-bezier(.25, .8, .5, 1);
}
</style>