-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobals.css
More file actions
31 lines (26 loc) · 817 Bytes
/
globals.css
File metadata and controls
31 lines (26 loc) · 817 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
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900&display=swap');
@import "tailwindcss";
@import "./tailwind.config.css";
@layer base {
html,
body {
font-family: "Inter", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-style: normal;
font-weight: 400;
line-height: 1.125rem;
letter-spacing: 0.00875rem;
}
button:not(:disabled),
[role="button"]:not(:disabled) {
cursor: pointer;
}
input:disabled {
background-color: light-dark(rgba(239, 239, 239, 0.3), rgba(59, 59, 59, 0.3)) !important;
}
input[type="search"]::-webkit-search-cancel-button {
cursor: pointer;
}
.border {
border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
}