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 { .msg-container {
@ -84,13 +84,23 @@
} }
@keyframes fadeIn { @keyframes fadeIn {
from{opacity:0} from {
to{opacity:1} opacity: 0
}
to {
opacity: 1
}
} }
@keyframes fadeOut { @keyframes fadeOut {
from{opacity:1} from {
to{opacity:0} opacity: 1
}
to {
opacity: 0
}
} }
@media screen and (max-width:480px) { @media screen and (max-width:480px) {