-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathinput.css
More file actions
53 lines (48 loc) · 1.06 KB
/
input.css
File metadata and controls
53 lines (48 loc) · 1.06 KB
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
47
48
49
50
51
52
53
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer utilities {
.press-1:active {
transform: scale(99%);
}
.press-2:active {
transform: scale(98%);
}
.press-3:active {
transform: scale(97%);
}
.press-4:active {
transform: scale(0.96);
}
.press-5:active {
transform: scale(0.95);
}
}
.app {
/* DISABLE SELECTION */
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Standard */
/* DISABLE BLUE HIGHLIGHT WHEN CLICK [FOR MOBILE CHROME] */
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.app:focus {
outline: none !important;
}
::-webkit-scrollbar {
width: 5px;
height: 5px;
}
::-webkit-scrollbar-track {
background: #fff;
}
::-webkit-scrollbar-thumb {
background: #888;
}