18 lines
253 B
Plaintext
18 lines
253 B
Plaintext
|
|
|
|
/* 根节点样式 */
|
|
._root {
|
|
padding: 1px 0;
|
|
overflow-x: auto;
|
|
overflow-y: hidden;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
|
|
/* 长按复制 */
|
|
._select {
|
|
-webkit-user-select: text;
|
|
-moz-user-select: text;
|
|
user-select: text;
|
|
}
|
|
|