-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathapp.css
More file actions
40 lines (34 loc) · 924 Bytes
/
app.css
File metadata and controls
40 lines (34 loc) · 924 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
@import "tailwindcss/base";
@import "./components.css";
@import "tailwindcss/components";
@import "tailwindcss/utilities";
/* Hide password reveal button in MS Edge */
::-ms-reveal {
display: none;
}
/* Hide scrollbar in Webkit-based browsers (Chrome, Safari and Opera) */
.scrollbar-hide::-webkit-scrollbar {
display: none;
}
/* Hide scrollbar in IE, MS Edge and Firefox */
.scrollbar-hide {
-ms-overflow-style: none; /* IE and MS Edge */
scrollbar-width: none; /* Firefox */
}
/* Disable autofill background on inputs */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
-webkit-box-shadow: 0 0 0 30px white inset !important;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Firefox */
input[type=number] {
-moz-appearance: textfield;
}