touch action

This commit is contained in:
wolegca 2019-09-12 23:48:49 +08:00
parent 20f1289563
commit 9101ae4607

View File

@ -1,5 +1,5 @@
* {
touch-action: none
touch-action: pan-y;
}
.msg-container {
@ -84,13 +84,23 @@
}
@keyframes fadeIn {
from{opacity:0}
to{opacity:1}
from {
opacity: 0
}
to {
opacity: 1
}
}
@keyframes fadeOut {
from{opacity:1}
to{opacity:0}
from {
opacity: 1
}
to {
opacity: 0
}
}
@media screen and (max-width:480px) {