-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
71 lines (61 loc) · 1.84 KB
/
Copy pathmain.css
File metadata and controls
71 lines (61 loc) · 1.84 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
@import '../../node_modules/@shoelace-style/shoelace/dist/themes/light.css';
:root {
width: 100%;
height: 100%;
}
:root,
:host,
.sl-theme-light {
--sl-color-primary-50: var(--sl-color-orange-50);
--sl-color-primary-100: var(--sl-color-orange-100);
--sl-color-primary-200: var(--sl-color-orange-200);
--sl-color-primary-300: var(--sl-color-orange-300);
--sl-color-primary-400: var(--sl-color-orange-400);
--sl-color-primary-500: var(--sl-color-orange-500);
--sl-color-primary-600: var(--sl-color-orange-600);
--sl-color-primary-700: var(--sl-color-orange-700);
--sl-color-primary-800: var(--sl-color-orange-800);
--sl-color-primary-900: var(--sl-color-orange-900);
--sl-color-primary-950: var(--sl-color-orange-950);
--sl-input-focus-ring-color: #fb6703;
--sl-input-focus-ring-offset: 0;
--p-anchor-gutter: 0.25rem;
}
/* PrimeReact AutoComplete styling */
.p-autocomplete {
display: flex;
align-items: center;
width: 100%;
min-height: var(--sl-input-height-medium);
background-color: var(--sl-input-background-color);
border: solid var(--sl-input-border-width) var(--sl-input-border-color);
border-radius: 0.25rem;
color: var(--sl-input-color);
}
.p-autocomplete-item.p-highlight {
background: var(--sl-color-primary-600);
color: var(--sl-color-neutral-0);
}
.p-autocomplete-item.p-focus:not(.p-highlight) {
background-color: var(--sl-color-neutral-100);
color: var(--sl-color-neutral-1000);
}
.p-autocomplete-input:focus {
outline: none !important;
box-shadow: none !important;
}
.p-autocomplete:focus-within:not(.p-disabled):not(.error) {
border-color: var(--sl-input-border-color-focus);
box-shadow: 0 0 0 var(--sl-focus-ring-width) var(--sl-input-focus-ring-color);
}
body {
width: 100%;
height: 100%;
}
#root {
width: 100%;
height: 100%;
}
@tailwind base;
@tailwind components;
@tailwind utilities;