20 lines
193 B
Plaintext
20 lines
193 B
Plaintext
|
:host {
|
||
|
display: block;
|
||
|
overflow: scroll;
|
||
|
-webkit-overflow-scrolling: touch;
|
||
|
}
|
||
|
|
||
|
.top {
|
||
|
display: inherit;
|
||
|
}
|
||
|
|
||
|
@keyframes show {
|
||
|
0% {
|
||
|
opacity: 0;
|
||
|
}
|
||
|
|
||
|
100% {
|
||
|
opacity: 1;
|
||
|
}
|
||
|
}
|