blob: 86b043590e8cb5a56bbf2f7ebb8af3726aabb54b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
.mobileInterface-inkInterfaceButtons {
position: absolute;
top: 0px;
display: flex;
justify-content: space-between;
width: 100%;
z-index: 9999;
height: 50px;
.mobileInterface-button {
height: 100%;
}
}
.mobileInterface-container {
height: 100%;
position: relative;
touch-action: none;
width: 100%;
-webkit-touch-callout:none;
-webkit-user-select:none;
-khtml-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
-webkit-tap-highlight-color:rgba(0,0,0,0);
}
.mobileInterface-background {
height: 100%;
width: 100%;
position: relative;
touch-action: none;
background-color: pink;
}
|