-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
46 lines (36 loc) · 909 Bytes
/
Copy pathstyle.css
File metadata and controls
46 lines (36 loc) · 909 Bytes
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
37
38
39
40
41
42
43
44
45
46
/**
* Copyright (C) - All Rights Reserved
* Written by Noah Mattia Bussinger
*/
* {
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
touch-action: none;
-webkit-touch-callout: none;
-webkit-user-callout: none;
-webkit-user-drag: none;
-webkit-user-modify: none;
-webkit-highlight: none;
}
html,
body {
position: relative;
overflow: hidden;
width: 100%;
height: 100%;
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
}
:root {
--sat: constant(safe-area-inset-top);
--sat: env(safe-area-inset-top);
--sar: constant(safe-area-inset-right);
--sar: env(safe-area-inset-right);
--sab: constant(safe-area-inset-bottom);
--sab: env(safe-area-inset-bottom);
--sal: constant(safe-area-inset-left);
--sal: env(safe-area-inset-left);
}