Dokończenie poprawek losowania składów

This commit is contained in:
2022-08-10 00:35:01 +02:00
parent a936b7f766
commit 67c285b38b
3 changed files with 205 additions and 73 deletions
+13
View File
@@ -205,3 +205,16 @@ ul {
border-color: $accentColor;
}
}
// Vue Transition anims
.slide-top {
&-enter-from,
&-leave-to {
transform: translateY(-100%);
}
&-enter-active,
&-leave-active {
transition: transform 100ms ease-in-out;
}
}