-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathindex.css
More file actions
28 lines (25 loc) · 767 Bytes
/
index.css
File metadata and controls
28 lines (25 loc) · 767 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
@tailwind base;
@tailwind components;
@tailwind utilities;
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Firefox */
input[type="number"] {
-moz-appearance: textfield;
}
@layer base {
:root {
--socket-widget-accent-color: rgb(239, 51, 116);
--socket-widget-on-accent-color: rgb(255, 255, 255);
--socket-widget-primary-color: rgb(255, 255, 255);
--socket-widget-secondary-color: rgb(241, 245, 249);
--socket-widget-primary-text-color: rgb(0, 0, 0);
--socket-widget-secondary-text-color: rgb(68, 68, 68);
--socket-widget-outline-color: rgb(208, 208, 208);
--socket-widget-interactive: rgb(241, 245, 249);
--socket-widget-on-interactive: rgb(10,10,10);
}
}