@luxonis/depthai-pipeline-lib 1.4.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +1 -0
- package/README.md +14 -0
- package/dist/index.css +3 -0
- package/dist/panda.css +1474 -0
- package/dist/src/components/Node.d.ts +5 -0
- package/dist/src/components/Node.js +42 -0
- package/dist/src/components/PipelineCanvas.d.ts +7 -0
- package/dist/src/components/PipelineCanvas.js +56 -0
- package/dist/src/index.d.ts +4 -0
- package/dist/src/index.js +2 -0
- package/dist/src/services/pipeline.d.ts +51 -0
- package/dist/src/services/pipeline.js +40 -0
- package/dist/src/styled-system/chunks/src__components__Node.css +195 -0
- package/dist/src/styled-system/chunks/src__components__PipelineCanvas.css +25 -0
- package/dist/src/styled-system/css/conditions.mjs +34 -0
- package/dist/src/styled-system/css/css.d.mts +9 -0
- package/dist/src/styled-system/css/css.mjs +44 -0
- package/dist/src/styled-system/css/cva.d.mts +6 -0
- package/dist/src/styled-system/css/cva.mjs +63 -0
- package/dist/src/styled-system/css/cx.d.mts +5 -0
- package/dist/src/styled-system/css/cx.mjs +15 -0
- package/dist/src/styled-system/css/index.d.mts +5 -0
- package/dist/src/styled-system/css/index.mjs +4 -0
- package/dist/src/styled-system/css/sva.d.mts +4 -0
- package/dist/src/styled-system/css/sva.mjs +35 -0
- package/dist/src/styled-system/global.css +70 -0
- package/dist/src/styled-system/helpers.mjs +282 -0
- package/dist/src/styled-system/patterns/aspect-ratio.d.mts +21 -0
- package/dist/src/styled-system/patterns/aspect-ratio.mjs +35 -0
- package/dist/src/styled-system/patterns/bleed.d.mts +22 -0
- package/dist/src/styled-system/patterns/bleed.mjs +19 -0
- package/dist/src/styled-system/patterns/box.d.mts +21 -0
- package/dist/src/styled-system/patterns/box.mjs +12 -0
- package/dist/src/styled-system/patterns/center.d.mts +21 -0
- package/dist/src/styled-system/patterns/center.mjs +18 -0
- package/dist/src/styled-system/patterns/circle.d.mts +21 -0
- package/dist/src/styled-system/patterns/circle.mjs +22 -0
- package/dist/src/styled-system/patterns/container.d.mts +21 -0
- package/dist/src/styled-system/patterns/container.mjs +18 -0
- package/dist/src/styled-system/patterns/divider.d.mts +23 -0
- package/dist/src/styled-system/patterns/divider.mjs +21 -0
- package/dist/src/styled-system/patterns/flex.d.mts +27 -0
- package/dist/src/styled-system/patterns/flex.mjs +23 -0
- package/dist/src/styled-system/patterns/float.d.mts +24 -0
- package/dist/src/styled-system/patterns/float.mjs +45 -0
- package/dist/src/styled-system/patterns/grid-item.d.mts +26 -0
- package/dist/src/styled-system/patterns/grid-item.mjs +22 -0
- package/dist/src/styled-system/patterns/grid.d.mts +25 -0
- package/dist/src/styled-system/patterns/grid.mjs +20 -0
- package/dist/src/styled-system/patterns/hstack.d.mts +22 -0
- package/dist/src/styled-system/patterns/hstack.mjs +20 -0
- package/dist/src/styled-system/patterns/index.d.mts +21 -0
- package/dist/src/styled-system/patterns/index.mjs +20 -0
- package/dist/src/styled-system/patterns/link-box.d.mts +21 -0
- package/dist/src/styled-system/patterns/link-box.mjs +19 -0
- package/dist/src/styled-system/patterns/link-overlay.d.mts +21 -0
- package/dist/src/styled-system/patterns/link-overlay.mjs +24 -0
- package/dist/src/styled-system/patterns/spacer.d.mts +21 -0
- package/dist/src/styled-system/patterns/spacer.mjs +18 -0
- package/dist/src/styled-system/patterns/square.d.mts +21 -0
- package/dist/src/styled-system/patterns/square.mjs +21 -0
- package/dist/src/styled-system/patterns/stack.d.mts +24 -0
- package/dist/src/styled-system/patterns/stack.mjs +20 -0
- package/dist/src/styled-system/patterns/visually-hidden.d.mts +21 -0
- package/dist/src/styled-system/patterns/visually-hidden.mjs +15 -0
- package/dist/src/styled-system/patterns/vstack.d.mts +22 -0
- package/dist/src/styled-system/patterns/vstack.mjs +20 -0
- package/dist/src/styled-system/patterns/wrap.d.mts +25 -0
- package/dist/src/styled-system/patterns/wrap.mjs +22 -0
- package/dist/src/styled-system/recipes/accordion.d.mts +28 -0
- package/dist/src/styled-system/recipes/accordion.mjs +46 -0
- package/dist/src/styled-system/recipes/alert-description.d.mts +28 -0
- package/dist/src/styled-system/recipes/alert-description.mjs +19 -0
- package/dist/src/styled-system/recipes/alert-dialog.d.mts +28 -0
- package/dist/src/styled-system/recipes/alert-dialog.mjs +70 -0
- package/dist/src/styled-system/recipes/alert-title.d.mts +28 -0
- package/dist/src/styled-system/recipes/alert-title.mjs +19 -0
- package/dist/src/styled-system/recipes/alert.d.mts +28 -0
- package/dist/src/styled-system/recipes/alert.mjs +26 -0
- package/dist/src/styled-system/recipes/avatar.d.mts +28 -0
- package/dist/src/styled-system/recipes/avatar.mjs +38 -0
- package/dist/src/styled-system/recipes/badge.d.mts +28 -0
- package/dist/src/styled-system/recipes/badge.mjs +28 -0
- package/dist/src/styled-system/recipes/blockquote.d.mts +28 -0
- package/dist/src/styled-system/recipes/blockquote.mjs +19 -0
- package/dist/src/styled-system/recipes/button.d.mts +29 -0
- package/dist/src/styled-system/recipes/button.mjs +37 -0
- package/dist/src/styled-system/recipes/calendar.d.mts +28 -0
- package/dist/src/styled-system/recipes/calendar.mjs +118 -0
- package/dist/src/styled-system/recipes/card-content.d.mts +28 -0
- package/dist/src/styled-system/recipes/card-content.mjs +19 -0
- package/dist/src/styled-system/recipes/card-description.d.mts +28 -0
- package/dist/src/styled-system/recipes/card-description.mjs +19 -0
- package/dist/src/styled-system/recipes/card-footer.d.mts +28 -0
- package/dist/src/styled-system/recipes/card-footer.mjs +19 -0
- package/dist/src/styled-system/recipes/card-header.d.mts +28 -0
- package/dist/src/styled-system/recipes/card-header.mjs +19 -0
- package/dist/src/styled-system/recipes/card-title.d.mts +28 -0
- package/dist/src/styled-system/recipes/card-title.mjs +19 -0
- package/dist/src/styled-system/recipes/card.d.mts +28 -0
- package/dist/src/styled-system/recipes/card.mjs +19 -0
- package/dist/src/styled-system/recipes/checkbox.d.mts +28 -0
- package/dist/src/styled-system/recipes/checkbox.mjs +34 -0
- package/dist/src/styled-system/recipes/collapsible.d.mts +28 -0
- package/dist/src/styled-system/recipes/collapsible.mjs +38 -0
- package/dist/src/styled-system/recipes/command-dialog.d.mts +28 -0
- package/dist/src/styled-system/recipes/command-dialog.mjs +34 -0
- package/dist/src/styled-system/recipes/command.d.mts +28 -0
- package/dist/src/styled-system/recipes/command.mjs +66 -0
- package/dist/src/styled-system/recipes/context-menu.d.mts +28 -0
- package/dist/src/styled-system/recipes/context-menu.mjs +98 -0
- package/dist/src/styled-system/recipes/create-recipe.d.mts +1 -0
- package/dist/src/styled-system/recipes/create-recipe.mjs +50 -0
- package/dist/src/styled-system/recipes/dialog.d.mts +28 -0
- package/dist/src/styled-system/recipes/dialog.mjs +66 -0
- package/dist/src/styled-system/recipes/dropdown-menu.d.mts +28 -0
- package/dist/src/styled-system/recipes/dropdown-menu.mjs +90 -0
- package/dist/src/styled-system/recipes/form-control.d.mts +28 -0
- package/dist/src/styled-system/recipes/form-control.mjs +19 -0
- package/dist/src/styled-system/recipes/form-description.d.mts +28 -0
- package/dist/src/styled-system/recipes/form-description.mjs +19 -0
- package/dist/src/styled-system/recipes/form-item.d.mts +28 -0
- package/dist/src/styled-system/recipes/form-item.mjs +19 -0
- package/dist/src/styled-system/recipes/form-label.d.mts +28 -0
- package/dist/src/styled-system/recipes/form-label.mjs +19 -0
- package/dist/src/styled-system/recipes/form-message.d.mts +28 -0
- package/dist/src/styled-system/recipes/form-message.mjs +19 -0
- package/dist/src/styled-system/recipes/h1.d.mts +28 -0
- package/dist/src/styled-system/recipes/h1.mjs +19 -0
- package/dist/src/styled-system/recipes/h2.d.mts +28 -0
- package/dist/src/styled-system/recipes/h2.mjs +19 -0
- package/dist/src/styled-system/recipes/h3.d.mts +28 -0
- package/dist/src/styled-system/recipes/h3.mjs +19 -0
- package/dist/src/styled-system/recipes/h4.d.mts +28 -0
- package/dist/src/styled-system/recipes/h4.mjs +19 -0
- package/dist/src/styled-system/recipes/hover-card.d.mts +28 -0
- package/dist/src/styled-system/recipes/hover-card.mjs +38 -0
- package/dist/src/styled-system/recipes/icon.d.mts +32 -0
- package/dist/src/styled-system/recipes/icon.mjs +49 -0
- package/dist/src/styled-system/recipes/index.d.mts +74 -0
- package/dist/src/styled-system/recipes/index.mjs +73 -0
- package/dist/src/styled-system/recipes/inline-code.d.mts +28 -0
- package/dist/src/styled-system/recipes/inline-code.mjs +19 -0
- package/dist/src/styled-system/recipes/input.d.mts +28 -0
- package/dist/src/styled-system/recipes/input.mjs +19 -0
- package/dist/src/styled-system/recipes/label.d.mts +28 -0
- package/dist/src/styled-system/recipes/label.mjs +19 -0
- package/dist/src/styled-system/recipes/large.d.mts +28 -0
- package/dist/src/styled-system/recipes/large.mjs +19 -0
- package/dist/src/styled-system/recipes/lead.d.mts +28 -0
- package/dist/src/styled-system/recipes/lead.mjs +19 -0
- package/dist/src/styled-system/recipes/link.d.mts +28 -0
- package/dist/src/styled-system/recipes/link.mjs +19 -0
- package/dist/src/styled-system/recipes/list.d.mts +28 -0
- package/dist/src/styled-system/recipes/list.mjs +19 -0
- package/dist/src/styled-system/recipes/menubar.d.mts +28 -0
- package/dist/src/styled-system/recipes/menubar.mjs +94 -0
- package/dist/src/styled-system/recipes/muted.d.mts +28 -0
- package/dist/src/styled-system/recipes/muted.mjs +19 -0
- package/dist/src/styled-system/recipes/navigation-menu.d.mts +28 -0
- package/dist/src/styled-system/recipes/navigation-menu.mjs +62 -0
- package/dist/src/styled-system/recipes/p.d.mts +28 -0
- package/dist/src/styled-system/recipes/p.mjs +19 -0
- package/dist/src/styled-system/recipes/popover.d.mts +28 -0
- package/dist/src/styled-system/recipes/popover.mjs +42 -0
- package/dist/src/styled-system/recipes/progress.d.mts +28 -0
- package/dist/src/styled-system/recipes/progress.mjs +34 -0
- package/dist/src/styled-system/recipes/radio-group.d.mts +28 -0
- package/dist/src/styled-system/recipes/radio-group.mjs +42 -0
- package/dist/src/styled-system/recipes/scroll-area.d.mts +28 -0
- package/dist/src/styled-system/recipes/scroll-area.mjs +46 -0
- package/dist/src/styled-system/recipes/select.d.mts +28 -0
- package/dist/src/styled-system/recipes/select.mjs +66 -0
- package/dist/src/styled-system/recipes/separator.d.mts +28 -0
- package/dist/src/styled-system/recipes/separator.mjs +26 -0
- package/dist/src/styled-system/recipes/sheet.d.mts +28 -0
- package/dist/src/styled-system/recipes/sheet.mjs +81 -0
- package/dist/src/styled-system/recipes/skeleton.d.mts +28 -0
- package/dist/src/styled-system/recipes/skeleton.mjs +19 -0
- package/dist/src/styled-system/recipes/slider.d.mts +28 -0
- package/dist/src/styled-system/recipes/slider.mjs +42 -0
- package/dist/src/styled-system/recipes/small.d.mts +28 -0
- package/dist/src/styled-system/recipes/small.mjs +19 -0
- package/dist/src/styled-system/recipes/switch-recipe.d.mts +28 -0
- package/dist/src/styled-system/recipes/switch-recipe.mjs +34 -0
- package/dist/src/styled-system/recipes/table-body.d.mts +28 -0
- package/dist/src/styled-system/recipes/table-body.mjs +19 -0
- package/dist/src/styled-system/recipes/table-caption.d.mts +28 -0
- package/dist/src/styled-system/recipes/table-caption.mjs +19 -0
- package/dist/src/styled-system/recipes/table-cell.d.mts +28 -0
- package/dist/src/styled-system/recipes/table-cell.mjs +19 -0
- package/dist/src/styled-system/recipes/table-container.d.mts +28 -0
- package/dist/src/styled-system/recipes/table-container.mjs +19 -0
- package/dist/src/styled-system/recipes/table-footer.d.mts +28 -0
- package/dist/src/styled-system/recipes/table-footer.mjs +19 -0
- package/dist/src/styled-system/recipes/table-head.d.mts +28 -0
- package/dist/src/styled-system/recipes/table-head.mjs +19 -0
- package/dist/src/styled-system/recipes/table-header.d.mts +28 -0
- package/dist/src/styled-system/recipes/table-header.mjs +19 -0
- package/dist/src/styled-system/recipes/table-row.d.mts +28 -0
- package/dist/src/styled-system/recipes/table-row.mjs +19 -0
- package/dist/src/styled-system/recipes/table.d.mts +28 -0
- package/dist/src/styled-system/recipes/table.mjs +19 -0
- package/dist/src/styled-system/recipes/tabs.d.mts +28 -0
- package/dist/src/styled-system/recipes/tabs.mjs +42 -0
- package/dist/src/styled-system/recipes/textarea.d.mts +28 -0
- package/dist/src/styled-system/recipes/textarea.mjs +19 -0
- package/dist/src/styled-system/recipes/toast-viewport.d.mts +28 -0
- package/dist/src/styled-system/recipes/toast-viewport.mjs +19 -0
- package/dist/src/styled-system/recipes/toast.d.mts +28 -0
- package/dist/src/styled-system/recipes/toast.mjs +59 -0
- package/dist/src/styled-system/recipes/toggle.d.mts +29 -0
- package/dist/src/styled-system/recipes/toggle.mjs +32 -0
- package/dist/src/styled-system/recipes/tooltip.d.mts +28 -0
- package/dist/src/styled-system/recipes/tooltip.mjs +38 -0
- package/dist/src/styled-system/recipes/typography-table-container.d.mts +28 -0
- package/dist/src/styled-system/recipes/typography-table-container.mjs +19 -0
- package/dist/src/styled-system/recipes/typography-table.d.mts +28 -0
- package/dist/src/styled-system/recipes/typography-table.mjs +19 -0
- package/dist/src/styled-system/reset.css +206 -0
- package/dist/src/styled-system/static.css +320 -0
- package/dist/src/styled-system/tokens/index.css +620 -0
- package/dist/src/styled-system/tokens/index.d.mts +9 -0
- package/dist/src/styled-system/tokens/index.mjs +2680 -0
- package/dist/src/styled-system/tokens/keyframes.css +56 -0
- package/dist/src/styled-system/tokens/tokens.d.mts +63 -0
- package/dist/src/styled-system/types/composition.d.mts +111 -0
- package/dist/src/styled-system/types/conditions.d.mts +266 -0
- package/dist/src/styled-system/types/csstype.d.mts +20749 -0
- package/dist/src/styled-system/types/global.d.mts +19 -0
- package/dist/src/styled-system/types/helpers.d.mts +2 -0
- package/dist/src/styled-system/types/index.d.mts +8 -0
- package/dist/src/styled-system/types/parts.d.mts +6 -0
- package/dist/src/styled-system/types/pattern.d.mts +61 -0
- package/dist/src/styled-system/types/prop-type.d.mts +340 -0
- package/dist/src/styled-system/types/recipe.d.mts +148 -0
- package/dist/src/styled-system/types/selectors.d.mts +59 -0
- package/dist/src/styled-system/types/style-props.d.mts +687 -0
- package/dist/src/styled-system/types/system-types.d.mts +85 -0
- package/package.json +63 -0
package/dist/panda.css
ADDED
|
@@ -0,0 +1,1474 @@
|
|
|
1
|
+
@layer base {
|
|
2
|
+
:root {
|
|
3
|
+
--made-with-panda: '🐼'
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
*, *::before, *::after, ::backdrop {
|
|
7
|
+
--blur: ;
|
|
8
|
+
--brightness: ;
|
|
9
|
+
--contrast: ;
|
|
10
|
+
--grayscale: ;
|
|
11
|
+
--hue-rotate: ;
|
|
12
|
+
--invert: ;
|
|
13
|
+
--saturate: ;
|
|
14
|
+
--sepia: ;
|
|
15
|
+
--drop-shadow: ;
|
|
16
|
+
--backdrop-blur: ;
|
|
17
|
+
--backdrop-brightness: ;
|
|
18
|
+
--backdrop-contrast: ;
|
|
19
|
+
--backdrop-grayscale: ;
|
|
20
|
+
--backdrop-hue-rotate: ;
|
|
21
|
+
--backdrop-invert: ;
|
|
22
|
+
--backdrop-opacity: ;
|
|
23
|
+
--backdrop-saturate: ;
|
|
24
|
+
--backdrop-sepia: ;
|
|
25
|
+
--scroll-snap-strictness: proximity;
|
|
26
|
+
--border-spacing-x: 0;
|
|
27
|
+
--border-spacing-y: 0;
|
|
28
|
+
--translate-x: 0;
|
|
29
|
+
--translate-y: 0;
|
|
30
|
+
--rotate: 0;
|
|
31
|
+
--skew-x: 0;
|
|
32
|
+
--skew-y: 0;
|
|
33
|
+
--scale-x: 1;
|
|
34
|
+
--scale-y: 1
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
html {
|
|
38
|
+
-moz-osx-font-smoothing: grayscale;
|
|
39
|
+
text-rendering: optimizeLegibility;
|
|
40
|
+
-webkit-font-smoothing: antialiased;
|
|
41
|
+
-webkit-text-size-adjust: 100%
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
body {
|
|
45
|
+
background: var(--colors-background);
|
|
46
|
+
color: var(--colors-foreground);
|
|
47
|
+
font-family: var(--fonts-sans)
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
button {
|
|
51
|
+
color: inherit;
|
|
52
|
+
outline: 2px solid transparent
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
* {
|
|
56
|
+
box-sizing: border-box;
|
|
57
|
+
font-family: var(--fonts-body)
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
html, body {
|
|
61
|
+
margin: var(--spacing-0);
|
|
62
|
+
padding: var(--spacing-0)
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
#root {
|
|
66
|
+
display: flex;
|
|
67
|
+
flex-direction: column;
|
|
68
|
+
height: 100vh
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
@layer recipes.slots {
|
|
73
|
+
.toast__root--variant_default {
|
|
74
|
+
border: var(--borders-base);
|
|
75
|
+
background: var(--colors-background);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.toast__root--variant_destructive {
|
|
79
|
+
border: var(--borders-destructive);
|
|
80
|
+
background: var(--colors-destructive);
|
|
81
|
+
color: var(--colors-destructive-foreground);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.toast__action--variant_destructive {
|
|
85
|
+
--sp-bca: color-mix(in srgb, transparent 60%, var(--colors-muted));
|
|
86
|
+
border-color: var(--sp-bca, var(--colors-muted));
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.toast__close--variant_destructive {
|
|
90
|
+
color: var(--colors-red-300);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.toast__action--variant_destructive:is(:focus, [data-focus]) {
|
|
94
|
+
--shadow-panda-ring-color: var(--colors-destructive)
|
|
95
|
+
;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.toast__close--variant_destructive:is(:focus, [data-focus]) {
|
|
99
|
+
--shadow-panda-ring-color: var(--colors-red-400)
|
|
100
|
+
;
|
|
101
|
+
--shadow-panda-ring-offset-color: var(--colors-red-600)
|
|
102
|
+
;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.toast__action--variant_destructive:is(:hover, [data-hover]) {
|
|
106
|
+
--sp-bca: color-mix(in srgb, transparent 70%, var(--colors-destructive));
|
|
107
|
+
border-color: var(--sp-bca, var(--colors-destructive));
|
|
108
|
+
background: var(--colors-destructive);
|
|
109
|
+
color: var(--colors-destructive-foreground);
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.toast__close--variant_destructive:is(:hover, [data-hover]) {
|
|
113
|
+
color: var(--colors-red-50);
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
@layer _base {
|
|
117
|
+
.toast__root {
|
|
118
|
+
pointer-events: auto;
|
|
119
|
+
position: relative;
|
|
120
|
+
display: flex;
|
|
121
|
+
width: var(--sizes-full);
|
|
122
|
+
align-items: center;
|
|
123
|
+
justify-content: space-between;
|
|
124
|
+
gap: var(--spacing-4);
|
|
125
|
+
overflow: hidden;
|
|
126
|
+
border-radius: var(--radii-md);
|
|
127
|
+
border: var(--borders-base);
|
|
128
|
+
padding: var(--spacing-6);
|
|
129
|
+
padding-right: var(--spacing-8);
|
|
130
|
+
box-shadow: var(--shadows-lg);
|
|
131
|
+
transition-property: var(--transition-prop, all);
|
|
132
|
+
transition-timing-function: var(--transition-easing, cubic-bezier(0.4, 0, 0.2, 1));
|
|
133
|
+
transition-duration: var(--transition-duration, 150ms);
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.toast__root[data-swipe=cancel] {
|
|
137
|
+
transform: translateX(0);
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.toast__root[data-swipe=end] {
|
|
141
|
+
transform: translateX(var(--radix-toast-swipe-end-x));
|
|
142
|
+
animation-name: exit;
|
|
143
|
+
animation-duration: var(--durations-fast);
|
|
144
|
+
--shadow-panda-exit-opacity: 1;
|
|
145
|
+
--shadow-panda-exit-scale: 1;
|
|
146
|
+
--shadow-panda-exit-rotate: 0;
|
|
147
|
+
--shadow-panda-exit-translate-x: 0;
|
|
148
|
+
--shadow-panda-exit-translate-y: 0
|
|
149
|
+
;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.toast__root[data-swipe=move] {
|
|
153
|
+
transform: translateX(var(--radix-toast-swipe-move-x));
|
|
154
|
+
transition: none;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.toast__root[data-state=open] {
|
|
158
|
+
animation-name: enter;
|
|
159
|
+
animation-duration: var(--durations-fast);
|
|
160
|
+
--shadow-panda-enter-opacity: 1;
|
|
161
|
+
--shadow-panda-enter-scale: 1;
|
|
162
|
+
--shadow-panda-enter-rotate: 0;
|
|
163
|
+
--shadow-panda-enter-translate-x: 0;
|
|
164
|
+
--shadow-panda-enter-translate-y: calc(100% * -1)
|
|
165
|
+
;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.toast__root[data-state=closed] {
|
|
169
|
+
animation-name: exit;
|
|
170
|
+
animation-duration: var(--durations-fast);
|
|
171
|
+
--shadow-panda-exit-opacity: 0.8
|
|
172
|
+
;
|
|
173
|
+
--shadow-panda-exit-scale: 1;
|
|
174
|
+
--shadow-panda-exit-rotate: 0;
|
|
175
|
+
--shadow-panda-exit-translate-x: 100%
|
|
176
|
+
;
|
|
177
|
+
--shadow-panda-exit-translate-y: 0
|
|
178
|
+
;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.toast__action {
|
|
182
|
+
display: inline-flex;
|
|
183
|
+
height: var(--sizes-8);
|
|
184
|
+
flex-shrink: 0;
|
|
185
|
+
align-items: center;
|
|
186
|
+
justify-content: center;
|
|
187
|
+
border-radius: var(--radii-md);
|
|
188
|
+
border: var(--borders-base);
|
|
189
|
+
background: var(--colors-transparent);
|
|
190
|
+
padding-inline: var(--spacing-3);
|
|
191
|
+
font-size: 0.875rem;
|
|
192
|
+
line-height: 1.25rem;
|
|
193
|
+
font-weight: var(--font-weights-medium);
|
|
194
|
+
--shadow-panda-ring-offset-color: var(--colors-background);
|
|
195
|
+
transition-property: var(--transition-prop, color, background-color, border-color, outline-color, text-decoration-color, fill, stroke);
|
|
196
|
+
transition-timing-function: var(--transition-easing, cubic-bezier(0.4, 0, 0.2, 1));
|
|
197
|
+
transition-duration: var(--transition-duration, 150ms);
|
|
198
|
+
cursor: pointer;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.toast__action:is(:disabled, [disabled], [data-disabled]) {
|
|
202
|
+
pointer-events: none;
|
|
203
|
+
opacity: 0.5;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.toast__close {
|
|
207
|
+
position: absolute;
|
|
208
|
+
right: var(--spacing-2);
|
|
209
|
+
top: var(--spacing-2);
|
|
210
|
+
border-radius: var(--radii-md);
|
|
211
|
+
padding: var(--spacing-1);
|
|
212
|
+
--sp-ca: color-mix(in srgb, transparent 50%, var(--colors-foreground));
|
|
213
|
+
color: var(--sp-ca, var(--colors-foreground));
|
|
214
|
+
opacity: 0;
|
|
215
|
+
transition-property: var(--transition-prop, opacity);
|
|
216
|
+
transition-timing-function: var(--transition-easing, cubic-bezier(0.4, 0, 0.2, 1));
|
|
217
|
+
transition-duration: var(--transition-duration, 150ms);
|
|
218
|
+
cursor: pointer;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.toast__title {
|
|
222
|
+
font-weight: var(--font-weights-semibold);
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.toast__title,.toast__description {
|
|
226
|
+
font-size: 0.875rem;
|
|
227
|
+
line-height: 1.25rem;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.toast__description {
|
|
231
|
+
opacity: 0.9;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
.button {
|
|
235
|
+
display: inline-flex;
|
|
236
|
+
align-items: center;
|
|
237
|
+
justify-content: center;
|
|
238
|
+
border-radius: var(--radii-md);
|
|
239
|
+
font-size: 0.875rem;
|
|
240
|
+
line-height: 1.25rem;
|
|
241
|
+
font-weight: var(--font-weights-medium);
|
|
242
|
+
transition-property: var(--transition-prop, color, background-color, border-color, outline-color, text-decoration-color, fill, stroke);
|
|
243
|
+
transition-timing-function: var(--transition-easing, cubic-bezier(0.4, 0, 0.2, 1));
|
|
244
|
+
transition-duration: var(--transition-duration, 150ms);
|
|
245
|
+
cursor: pointer;
|
|
246
|
+
--shadow-panda-ring-offset-color: var(--colors-background);
|
|
247
|
+
gap: var(--spacing-2);
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.button:is(:disabled, [disabled], [data-disabled]) {
|
|
251
|
+
pointer-events: none;
|
|
252
|
+
opacity: 50%;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.toast__action:is(:focus, [data-focus]) {
|
|
256
|
+
outline: 2px solid transparent;
|
|
257
|
+
outline-offset: 2px;
|
|
258
|
+
--shadow-panda-ring-offset-shadow: var(--shadow-panda-ring-inset,) 0 0 0 var(--shadow-panda-ring-offset-width, 0px) var(--shadow-panda-ring-offset-color);
|
|
259
|
+
--shadow-panda-ring-shadow: var(--shadow-panda-ring-inset,) 0 0 0 calc(2px + var(--shadow-panda-ring-offset-width, 0px)) var(--shadow-panda-ring-color);
|
|
260
|
+
box-shadow: var(--shadow-panda-ring-offset-shadow),var(--shadow-panda-ring-shadow),var(--shadow-panda-base-shadow,0 0 #0000);
|
|
261
|
+
--shadow-panda-ring-color: var(--colors-ring)
|
|
262
|
+
;
|
|
263
|
+
--shadow-panda-ring-offset-width: 2px
|
|
264
|
+
;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.toast__close:is(:focus, [data-focus]) {
|
|
268
|
+
opacity: 1;
|
|
269
|
+
outline: 2px solid transparent;
|
|
270
|
+
outline-offset: 2px;
|
|
271
|
+
--shadow-panda-ring-offset-shadow: var(--shadow-panda-ring-inset,) 0 0 0 var(--shadow-panda-ring-offset-width, 0px) var(--shadow-panda-ring-offset-color);
|
|
272
|
+
--shadow-panda-ring-shadow: var(--shadow-panda-ring-inset,) 0 0 0 calc(2px + var(--shadow-panda-ring-offset-width, 0px)) var(--shadow-panda-ring-color);
|
|
273
|
+
box-shadow: var(--shadow-panda-ring-offset-shadow),var(--shadow-panda-ring-shadow),var(--shadow-panda-base-shadow,0 0 #0000);
|
|
274
|
+
--shadow-panda-ring-color: var(--colors-ring)
|
|
275
|
+
;
|
|
276
|
+
--shadow-panda-ring-offset-width: 2px
|
|
277
|
+
;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.button:is(:focus-visible, [data-focus-visible]) {
|
|
281
|
+
outline: 2px solid transparent;
|
|
282
|
+
outline-offset: 2px;
|
|
283
|
+
--shadow-panda-ring-offset-shadow: var(--shadow-panda-ring-inset,) 0 0 0 var(--shadow-panda-ring-offset-width, 0px) var(--shadow-panda-ring-offset-color);
|
|
284
|
+
--shadow-panda-ring-shadow: var(--shadow-panda-ring-inset,) 0 0 0 calc(2px + var(--shadow-panda-ring-offset-width, 0px)) var(--shadow-panda-ring-color);
|
|
285
|
+
box-shadow: var(--shadow-panda-ring-offset-shadow),var(--shadow-panda-ring-shadow),var(--shadow-panda-base-shadow,0 0 #0000);
|
|
286
|
+
--shadow-panda-ring-color: var(--colors-ring)
|
|
287
|
+
;
|
|
288
|
+
--shadow-panda-ring-offset-width: 2px
|
|
289
|
+
;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.toast__action:is(:hover, [data-hover]) {
|
|
293
|
+
background: var(--colors-secondary);
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.toast__close:is(:hover, [data-hover]) {
|
|
297
|
+
color: var(--colors-foreground);
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.group:is(:hover, [data-hover]) .toast__close {
|
|
301
|
+
opacity: 1;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
@media screen and (min-width: 40em) {
|
|
305
|
+
.toast__root[data-state=open] {
|
|
306
|
+
--shadow-panda-enter-translate-y: 100%
|
|
307
|
+
;
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
@layer recipes {
|
|
314
|
+
.button--variant_destructive {
|
|
315
|
+
background: var(--colors-destructive);
|
|
316
|
+
color: var(--colors-destructive-foreground);
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
.button--variant_outline {
|
|
320
|
+
border: var(--borders-input);
|
|
321
|
+
background: var(--colors-background);
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.button--variant_secondary {
|
|
325
|
+
background: var(--colors-secondary);
|
|
326
|
+
color: var(--colors-secondary-foreground);
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.button--variant_link {
|
|
330
|
+
color: var(--colors-primary);
|
|
331
|
+
text-underline-offset: 4px;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
.button--size_sm {
|
|
335
|
+
height: var(--sizes-9);
|
|
336
|
+
border-radius: var(--radii-md);
|
|
337
|
+
padding-inline: var(--spacing-3);
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.button--size_lg {
|
|
341
|
+
height: var(--sizes-11);
|
|
342
|
+
border-radius: var(--radii-md);
|
|
343
|
+
padding-inline: var(--spacing-8);
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.button--variant_default {
|
|
347
|
+
background: var(--colors-primary);
|
|
348
|
+
color: var(--colors-primary-foreground);
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
.button--size_icon {
|
|
352
|
+
height: var(--sizes-10);
|
|
353
|
+
width: var(--sizes-10);
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.button--size_default {
|
|
357
|
+
height: var(--sizes-10);
|
|
358
|
+
padding-inline: var(--spacing-4);
|
|
359
|
+
padding-block: var(--spacing-2)
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
.button--variant_destructive:is(:hover, [data-hover]) {
|
|
363
|
+
--sp-bga: color-mix(in srgb, transparent NaN, var(--colors-destructive));
|
|
364
|
+
background-color: var(--sp-bga, var(--colors-destructive));
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
.button--variant_outline:is(:hover, [data-hover]) {
|
|
368
|
+
background: var(--colors-accent);
|
|
369
|
+
color: var(--colors-accent-foreground);
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
.button--variant_secondary:is(:hover, [data-hover]) {
|
|
373
|
+
--sp-bga: color-mix(in srgb, transparent NaN, var(--colors-secondary));
|
|
374
|
+
background-color: var(--sp-bga, var(--colors-secondary));
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
.button--variant_link:is(:hover, [data-hover]) {
|
|
378
|
+
text-decoration: underline;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
.button--variant_default:is(:hover, [data-hover]) {
|
|
382
|
+
--sp-bga: color-mix(in srgb, transparent NaN, var(--colors-primary));
|
|
383
|
+
background-color: var(--sp-bga, var(--colors-primary));
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
.button--variant_ghost:is(:hover, [data-hover]) {
|
|
387
|
+
background: var(--colors-accent);
|
|
388
|
+
color: var(--colors-accent-foreground)
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
@layer _base {
|
|
392
|
+
.label {
|
|
393
|
+
font-size: 0.875rem;
|
|
394
|
+
line-height: var(--line-heights-none);
|
|
395
|
+
font-weight: var(--font-weights-medium);
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
.peer:is(:disabled, [disabled], [data-disabled]) ~ .label {
|
|
399
|
+
cursor: not-allowed;
|
|
400
|
+
opacity: 0.7
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
.button {
|
|
404
|
+
display: inline-flex;
|
|
405
|
+
align-items: center;
|
|
406
|
+
justify-content: center;
|
|
407
|
+
border-radius: var(--radii-md);
|
|
408
|
+
font-size: 0.875rem;
|
|
409
|
+
line-height: 1.25rem;
|
|
410
|
+
font-weight: var(--font-weights-medium);
|
|
411
|
+
transition-property: var(--transition-prop, color, background-color, border-color, outline-color, text-decoration-color, fill, stroke);
|
|
412
|
+
transition-timing-function: var(--transition-easing, cubic-bezier(0.4, 0, 0.2, 1));
|
|
413
|
+
transition-duration: var(--transition-duration, 150ms);
|
|
414
|
+
cursor: pointer;
|
|
415
|
+
--shadow-panda-ring-offset-color: var(--colors-background);
|
|
416
|
+
gap: var(--spacing-2);
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
.button:is(:disabled, [disabled], [data-disabled]) {
|
|
420
|
+
pointer-events: none;
|
|
421
|
+
opacity: 50%
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
.button:is(:focus-visible, [data-focus-visible]) {
|
|
425
|
+
outline: 2px solid transparent;
|
|
426
|
+
outline-offset: 2px;
|
|
427
|
+
--shadow-panda-ring-offset-shadow: var(--shadow-panda-ring-inset,) 0 0 0 var(--shadow-panda-ring-offset-width, 0px) var(--shadow-panda-ring-offset-color);
|
|
428
|
+
--shadow-panda-ring-shadow: var(--shadow-panda-ring-inset,) 0 0 0 calc(2px + var(--shadow-panda-ring-offset-width, 0px)) var(--shadow-panda-ring-color);
|
|
429
|
+
box-shadow: var(--shadow-panda-ring-offset-shadow),var(--shadow-panda-ring-shadow),var(--shadow-panda-base-shadow,0 0 #0000);
|
|
430
|
+
--shadow-panda-ring-color: var(--colors-ring)
|
|
431
|
+
;
|
|
432
|
+
--shadow-panda-ring-offset-width: 2px
|
|
433
|
+
|
|
434
|
+
}
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
@layer reset {
|
|
439
|
+
* {
|
|
440
|
+
margin: 0;
|
|
441
|
+
padding: 0;
|
|
442
|
+
font: inherit;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
*,
|
|
446
|
+
*::before,
|
|
447
|
+
*::after {
|
|
448
|
+
box-sizing: border-box;
|
|
449
|
+
border-width: 0;
|
|
450
|
+
border-style: solid;
|
|
451
|
+
border-color: var(--global-color-border, currentColor);
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
html {
|
|
455
|
+
line-height: 1.5;
|
|
456
|
+
--font-fallback: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
|
|
457
|
+
'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
|
|
458
|
+
'Noto Color Emoji';
|
|
459
|
+
-webkit-text-size-adjust: 100%;
|
|
460
|
+
-webkit-font-smoothing: antialiased;
|
|
461
|
+
-moz-osx-font-smoothing: grayscale;
|
|
462
|
+
-moz-tab-size: 4;
|
|
463
|
+
tab-size: 4;
|
|
464
|
+
font-family: var(--global-font-body, var(--font-fallback));
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
hr {
|
|
468
|
+
height: 0;
|
|
469
|
+
color: inherit;
|
|
470
|
+
border-top-width: 1px;
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
body {
|
|
474
|
+
height: 100%;
|
|
475
|
+
line-height: inherit;
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
img {
|
|
479
|
+
border-style: none;
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
img,
|
|
483
|
+
svg,
|
|
484
|
+
video,
|
|
485
|
+
canvas,
|
|
486
|
+
audio,
|
|
487
|
+
iframe,
|
|
488
|
+
embed,
|
|
489
|
+
object {
|
|
490
|
+
display: block;
|
|
491
|
+
vertical-align: middle;
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
img,
|
|
495
|
+
video {
|
|
496
|
+
max-width: 100%;
|
|
497
|
+
height: auto;
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
p,
|
|
501
|
+
h1,
|
|
502
|
+
h2,
|
|
503
|
+
h3,
|
|
504
|
+
h4,
|
|
505
|
+
h5,
|
|
506
|
+
h6 {
|
|
507
|
+
overflow-wrap: break-word;
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
ol,
|
|
511
|
+
ul {
|
|
512
|
+
list-style: none;
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
code,
|
|
516
|
+
kbd,
|
|
517
|
+
pre,
|
|
518
|
+
samp {
|
|
519
|
+
font-size: 1em;
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
button,
|
|
523
|
+
[type='button'],
|
|
524
|
+
[type='reset'],
|
|
525
|
+
[type='submit'] {
|
|
526
|
+
-webkit-appearance: button;
|
|
527
|
+
background-color: transparent;
|
|
528
|
+
background-image: none;
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
button,
|
|
532
|
+
select {
|
|
533
|
+
text-transform: none;
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
table {
|
|
537
|
+
text-indent: 0;
|
|
538
|
+
border-color: inherit;
|
|
539
|
+
border-collapse: collapse;
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
input::placeholder,
|
|
543
|
+
textarea::placeholder {
|
|
544
|
+
opacity: 1;
|
|
545
|
+
color: var(--global-color-placeholder, #9ca3af);
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
textarea {
|
|
549
|
+
resize: vertical;
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
summary {
|
|
553
|
+
display: list-item;
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
small {
|
|
557
|
+
font-size: 80%;
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
sub,
|
|
561
|
+
sup {
|
|
562
|
+
font-size: 75%;
|
|
563
|
+
line-height: 0;
|
|
564
|
+
position: relative;
|
|
565
|
+
vertical-align: baseline;
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
sub {
|
|
569
|
+
bottom: -0.25em;
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
sup {
|
|
573
|
+
top: -0.5em;
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
dialog {
|
|
577
|
+
padding: 0;
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
a {
|
|
581
|
+
color: inherit;
|
|
582
|
+
text-decoration: inherit;
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
abbr:where([title]) {
|
|
586
|
+
text-decoration: underline dotted;
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
b,
|
|
590
|
+
strong {
|
|
591
|
+
font-weight: bolder;
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
code,
|
|
595
|
+
kbd,
|
|
596
|
+
samp,
|
|
597
|
+
pre {
|
|
598
|
+
font-size: 1em;
|
|
599
|
+
--font-mono-fallback: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New';
|
|
600
|
+
font-family: var(--global-font-mono, var(--font-fallback));
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
input[type="text"],
|
|
604
|
+
input[type="email"],
|
|
605
|
+
input[type="search"],
|
|
606
|
+
input[type="password"] {
|
|
607
|
+
-webkit-appearance: none;
|
|
608
|
+
-moz-appearance: none;
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
input[type='search'] {
|
|
612
|
+
-webkit-appearance: textfield;
|
|
613
|
+
outline-offset: -2px;
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
::-webkit-search-decoration,
|
|
617
|
+
::-webkit-search-cancel-button {
|
|
618
|
+
-webkit-appearance: none;
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
::-webkit-file-upload-button {
|
|
622
|
+
-webkit-appearance: button;
|
|
623
|
+
font: inherit;
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
input[type="number"]::-webkit-inner-spin-button,
|
|
627
|
+
input[type="number"]::-webkit-outer-spin-button {
|
|
628
|
+
height: auto;
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
input[type='number']{
|
|
632
|
+
-moz-appearance: textfield;
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
:-moz-ui-invalid {
|
|
636
|
+
box-shadow: none;
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
:-moz-focusring {
|
|
640
|
+
outline: auto;
|
|
641
|
+
}
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
@layer tokens {
|
|
645
|
+
:where(:root, :host) {
|
|
646
|
+
--letter-spacings-tighter: -0.05em;
|
|
647
|
+
--letter-spacings-tight: -0.025em;
|
|
648
|
+
--letter-spacings-normal: 0em;
|
|
649
|
+
--letter-spacings-wide: 0.025em;
|
|
650
|
+
--letter-spacings-wider: 0.05em;
|
|
651
|
+
--letter-spacings-widest: 0.1em;
|
|
652
|
+
--blurs-sm: 4px;
|
|
653
|
+
--blurs-base: 8px;
|
|
654
|
+
--blurs-md: 12px;
|
|
655
|
+
--blurs-lg: 16px;
|
|
656
|
+
--blurs-xl: 24px;
|
|
657
|
+
--blurs-2xl: 40px;
|
|
658
|
+
--blurs-3xl: 64px;
|
|
659
|
+
--animations-spin: spin 1s linear infinite;
|
|
660
|
+
--animations-ping: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
|
|
661
|
+
--animations-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
662
|
+
--animations-bounce: bounce 1s infinite;
|
|
663
|
+
--font-weights-thin: 100;
|
|
664
|
+
--font-weights-extralight: 200;
|
|
665
|
+
--font-weights-light: 300;
|
|
666
|
+
--font-weights-normal: 400;
|
|
667
|
+
--font-weights-medium: 500;
|
|
668
|
+
--font-weights-semibold: 600;
|
|
669
|
+
--font-weights-bold: 700;
|
|
670
|
+
--font-weights-extrabold: 800;
|
|
671
|
+
--font-weights-black: 900;
|
|
672
|
+
--font-weights-primary: 400;
|
|
673
|
+
--font-weights-md: 500;
|
|
674
|
+
--font-weights-lg: 600;
|
|
675
|
+
--font-weights-xl: 800;
|
|
676
|
+
--spacing-0: 0rem;
|
|
677
|
+
--spacing-1: 0.25rem;
|
|
678
|
+
--spacing-2: 0.5rem;
|
|
679
|
+
--spacing-3: 0.75rem;
|
|
680
|
+
--spacing-4: 1rem;
|
|
681
|
+
--spacing-5: 1.25rem;
|
|
682
|
+
--spacing-6: 1.5rem;
|
|
683
|
+
--spacing-7: 1.75rem;
|
|
684
|
+
--spacing-8: 2rem;
|
|
685
|
+
--spacing-9: 2.25rem;
|
|
686
|
+
--spacing-10: 2.5rem;
|
|
687
|
+
--spacing-11: 2.75rem;
|
|
688
|
+
--spacing-12: 3rem;
|
|
689
|
+
--spacing-14: 3.5rem;
|
|
690
|
+
--spacing-16: 4rem;
|
|
691
|
+
--spacing-20: 5rem;
|
|
692
|
+
--spacing-24: 6rem;
|
|
693
|
+
--spacing-28: 7rem;
|
|
694
|
+
--spacing-32: 8rem;
|
|
695
|
+
--spacing-36: 9rem;
|
|
696
|
+
--spacing-40: 10rem;
|
|
697
|
+
--spacing-44: 11rem;
|
|
698
|
+
--spacing-48: 12rem;
|
|
699
|
+
--spacing-52: 13rem;
|
|
700
|
+
--spacing-56: 14rem;
|
|
701
|
+
--spacing-60: 15rem;
|
|
702
|
+
--spacing-64: 16rem;
|
|
703
|
+
--spacing-72: 18rem;
|
|
704
|
+
--spacing-80: 20rem;
|
|
705
|
+
--spacing-96: 24rem;
|
|
706
|
+
--spacing-0\.5: 0.125rem;
|
|
707
|
+
--spacing-1\.5: 0.375rem;
|
|
708
|
+
--spacing-2\.5: 0.625rem;
|
|
709
|
+
--spacing-3\.5: 0.875rem;
|
|
710
|
+
--spacing-separator: 10px;
|
|
711
|
+
--spacing-smaller-xs: 4px;
|
|
712
|
+
--spacing-smaller-sm: 12px;
|
|
713
|
+
--spacing-smaller-md: 14px;
|
|
714
|
+
--spacing-xxs: 6px;
|
|
715
|
+
--spacing-xs: 8px;
|
|
716
|
+
--spacing-sm: 16px;
|
|
717
|
+
--spacing-3xs: 24px;
|
|
718
|
+
--spacing-md: 32px;
|
|
719
|
+
--spacing-lg: 64px;
|
|
720
|
+
--shadows-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
|
|
721
|
+
--shadows-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
|
|
722
|
+
--shadows-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
|
|
723
|
+
--shadows-xs: 0px 1px 2px rgba(16, 24, 40, 0.05);
|
|
724
|
+
--shadows-sm: 0px 1px 3px rgba(16, 24, 40, 0.1), 0px 1px 2px rgba(16, 24, 40, 0.06);
|
|
725
|
+
--shadows-md: 0px 4px 8px -2px rgba(16, 24, 40, 0.1), 0px 2px 4px -2px rgba(16, 24, 40, 0.06);
|
|
726
|
+
--shadows-lg: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
|
|
727
|
+
--borders-none: none;
|
|
728
|
+
--borders-outline-base: 1px solid var(--colors-light-gray);
|
|
729
|
+
--borders-border-base: 1px solid var(--colors-decoration-gray);
|
|
730
|
+
--borders-border-error: 1px solid var(--colors-decoration-error);
|
|
731
|
+
--borders-border-success: 1px solid var(--colors-decoration-success);
|
|
732
|
+
--borders-border-active: 1px solid var(--colors-decoration-active);
|
|
733
|
+
--opacity-90: 0.9;
|
|
734
|
+
--easings-default: cubic-bezier(0.4, 0, 0.2, 1);
|
|
735
|
+
--easings-linear: linear;
|
|
736
|
+
--easings-in: cubic-bezier(0.4, 0, 1, 1);
|
|
737
|
+
--easings-out: cubic-bezier(0, 0, 0.2, 1);
|
|
738
|
+
--easings-in-out: cubic-bezier(0.4, 0, 0.2, 1);
|
|
739
|
+
--easings-ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
|
|
740
|
+
--durations-fastest: 50ms;
|
|
741
|
+
--durations-faster: 100ms;
|
|
742
|
+
--durations-normal: 200ms;
|
|
743
|
+
--durations-slow: 300ms;
|
|
744
|
+
--durations-slower: 400ms;
|
|
745
|
+
--durations-slowest: 500ms;
|
|
746
|
+
--durations-fast: 150ms;
|
|
747
|
+
--fonts-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
|
|
748
|
+
--fonts-body: Inter;
|
|
749
|
+
--fonts-mono: JetBrainsMono;
|
|
750
|
+
--fonts-sans: var(--font-inter, Inter), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
751
|
+
--line-heights-3: .75rem;
|
|
752
|
+
--line-heights-4: 1rem;
|
|
753
|
+
--line-heights-5: 1.25rem;
|
|
754
|
+
--line-heights-6: 1.5rem;
|
|
755
|
+
--line-heights-7: 1.75rem;
|
|
756
|
+
--line-heights-8: 2rem;
|
|
757
|
+
--line-heights-9: 2.25rem;
|
|
758
|
+
--line-heights-10: 2.5rem;
|
|
759
|
+
--line-heights-sm: 20px;
|
|
760
|
+
--line-heights-primary: 24px;
|
|
761
|
+
--line-heights-md: 32px;
|
|
762
|
+
--line-heights-lg: 38px;
|
|
763
|
+
--line-heights-none: 1;
|
|
764
|
+
--line-heights-tight: 1.25;
|
|
765
|
+
--line-heights-snug: 1.375;
|
|
766
|
+
--line-heights-normal: 1.5;
|
|
767
|
+
--line-heights-relaxed: 1.625;
|
|
768
|
+
--line-heights-loose: 2;
|
|
769
|
+
--radii-xs: 0.125rem;
|
|
770
|
+
--radii-sm: calc(var(--radii-radius) - 4px);
|
|
771
|
+
--radii-md: calc(var(--radii-radius) - 2px);
|
|
772
|
+
--radii-lg: var(--radii-radius);
|
|
773
|
+
--radii-xl: calc(var(--radii-radius) + 4px);
|
|
774
|
+
--radii-2xl: 1rem;
|
|
775
|
+
--radii-3xl: 1.5rem;
|
|
776
|
+
--radii-full: 9999px;
|
|
777
|
+
--radii-common: 6px;
|
|
778
|
+
--radii-radius: 0.5rem;
|
|
779
|
+
--font-sizes-2xs: 0.5rem;
|
|
780
|
+
--font-sizes-2xl: 1.5rem;
|
|
781
|
+
--font-sizes-3xl: 1.875rem;
|
|
782
|
+
--font-sizes-4xl: 2.25rem;
|
|
783
|
+
--font-sizes-5xl: 3rem;
|
|
784
|
+
--font-sizes-6xl: 3.75rem;
|
|
785
|
+
--font-sizes-7xl: 4.5rem;
|
|
786
|
+
--font-sizes-8xl: 6rem;
|
|
787
|
+
--font-sizes-9xl: 8rem;
|
|
788
|
+
--font-sizes-xxs: 10px;
|
|
789
|
+
--font-sizes-xs: 12px;
|
|
790
|
+
--font-sizes-sm: 14px;
|
|
791
|
+
--font-sizes-primary: 16px;
|
|
792
|
+
--font-sizes-md: 20px;
|
|
793
|
+
--font-sizes-lg: 24px;
|
|
794
|
+
--font-sizes-xl: 32px;
|
|
795
|
+
--colors-current: currentColor;
|
|
796
|
+
--colors-black: #000;
|
|
797
|
+
--colors-white: #fff;
|
|
798
|
+
--colors-transparent: rgb(0 0 0 / 0);
|
|
799
|
+
--colors-rose-50: #fff1f2;
|
|
800
|
+
--colors-rose-100: #ffe4e6;
|
|
801
|
+
--colors-rose-200: #fecdd3;
|
|
802
|
+
--colors-rose-300: #fda4af;
|
|
803
|
+
--colors-rose-400: #fb7185;
|
|
804
|
+
--colors-rose-500: #f43f5e;
|
|
805
|
+
--colors-rose-600: #e11d48;
|
|
806
|
+
--colors-rose-700: #be123c;
|
|
807
|
+
--colors-rose-800: #9f1239;
|
|
808
|
+
--colors-rose-900: #881337;
|
|
809
|
+
--colors-rose-950: #4c0519;
|
|
810
|
+
--colors-pink-50: #fdf2f8;
|
|
811
|
+
--colors-pink-100: #fce7f3;
|
|
812
|
+
--colors-pink-200: #fbcfe8;
|
|
813
|
+
--colors-pink-300: #f9a8d4;
|
|
814
|
+
--colors-pink-400: #f472b6;
|
|
815
|
+
--colors-pink-500: #ec4899;
|
|
816
|
+
--colors-pink-600: #db2777;
|
|
817
|
+
--colors-pink-700: #be185d;
|
|
818
|
+
--colors-pink-800: #9d174d;
|
|
819
|
+
--colors-pink-900: #831843;
|
|
820
|
+
--colors-pink-950: #500724;
|
|
821
|
+
--colors-fuchsia-50: #fdf4ff;
|
|
822
|
+
--colors-fuchsia-100: #fae8ff;
|
|
823
|
+
--colors-fuchsia-200: #f5d0fe;
|
|
824
|
+
--colors-fuchsia-300: #f0abfc;
|
|
825
|
+
--colors-fuchsia-400: #e879f9;
|
|
826
|
+
--colors-fuchsia-500: #d946ef;
|
|
827
|
+
--colors-fuchsia-600: #c026d3;
|
|
828
|
+
--colors-fuchsia-700: #a21caf;
|
|
829
|
+
--colors-fuchsia-800: #86198f;
|
|
830
|
+
--colors-fuchsia-900: #701a75;
|
|
831
|
+
--colors-fuchsia-950: #4a044e;
|
|
832
|
+
--colors-purple-50: #faf5ff;
|
|
833
|
+
--colors-purple-100: #f3e8ff;
|
|
834
|
+
--colors-purple-200: #e9d5ff;
|
|
835
|
+
--colors-purple-300: #d8b4fe;
|
|
836
|
+
--colors-purple-400: #c084fc;
|
|
837
|
+
--colors-purple-500: #a855f7;
|
|
838
|
+
--colors-purple-600: #9333ea;
|
|
839
|
+
--colors-purple-700: #7e22ce;
|
|
840
|
+
--colors-purple-800: #6b21a8;
|
|
841
|
+
--colors-purple-900: #581c87;
|
|
842
|
+
--colors-purple-950: #3b0764;
|
|
843
|
+
--colors-violet-50: #f5f3ff;
|
|
844
|
+
--colors-violet-100: #ede9fe;
|
|
845
|
+
--colors-violet-200: #ddd6fe;
|
|
846
|
+
--colors-violet-300: #c4b5fd;
|
|
847
|
+
--colors-violet-400: #a78bfa;
|
|
848
|
+
--colors-violet-500: #8b5cf6;
|
|
849
|
+
--colors-violet-600: #7c3aed;
|
|
850
|
+
--colors-violet-700: #6d28d9;
|
|
851
|
+
--colors-violet-800: #5b21b6;
|
|
852
|
+
--colors-violet-900: #4c1d95;
|
|
853
|
+
--colors-violet-950: #2e1065;
|
|
854
|
+
--colors-indigo-50: #eef2ff;
|
|
855
|
+
--colors-indigo-100: #e0e7ff;
|
|
856
|
+
--colors-indigo-200: #c7d2fe;
|
|
857
|
+
--colors-indigo-300: #a5b4fc;
|
|
858
|
+
--colors-indigo-400: #818cf8;
|
|
859
|
+
--colors-indigo-500: #6366f1;
|
|
860
|
+
--colors-indigo-600: #4f46e5;
|
|
861
|
+
--colors-indigo-700: #4338ca;
|
|
862
|
+
--colors-indigo-800: #3730a3;
|
|
863
|
+
--colors-indigo-900: #312e81;
|
|
864
|
+
--colors-indigo-950: #1e1b4b;
|
|
865
|
+
--colors-blue-50: #eff6ff;
|
|
866
|
+
--colors-blue-100: #dbeafe;
|
|
867
|
+
--colors-blue-200: #bfdbfe;
|
|
868
|
+
--colors-blue-300: #93c5fd;
|
|
869
|
+
--colors-blue-400: #60a5fa;
|
|
870
|
+
--colors-blue-500: #3b82f6;
|
|
871
|
+
--colors-blue-600: #2563eb;
|
|
872
|
+
--colors-blue-700: #1d4ed8;
|
|
873
|
+
--colors-blue-800: #1e40af;
|
|
874
|
+
--colors-blue-900: #1e3a8a;
|
|
875
|
+
--colors-blue-950: #172554;
|
|
876
|
+
--colors-sky-50: #f0f9ff;
|
|
877
|
+
--colors-sky-100: #e0f2fe;
|
|
878
|
+
--colors-sky-200: #bae6fd;
|
|
879
|
+
--colors-sky-300: #7dd3fc;
|
|
880
|
+
--colors-sky-400: #38bdf8;
|
|
881
|
+
--colors-sky-500: #0ea5e9;
|
|
882
|
+
--colors-sky-600: #0284c7;
|
|
883
|
+
--colors-sky-700: #0369a1;
|
|
884
|
+
--colors-sky-800: #075985;
|
|
885
|
+
--colors-sky-900: #0c4a6e;
|
|
886
|
+
--colors-sky-950: #082f49;
|
|
887
|
+
--colors-cyan-50: #ecfeff;
|
|
888
|
+
--colors-cyan-100: #cffafe;
|
|
889
|
+
--colors-cyan-200: #a5f3fc;
|
|
890
|
+
--colors-cyan-300: #67e8f9;
|
|
891
|
+
--colors-cyan-400: #22d3ee;
|
|
892
|
+
--colors-cyan-500: #06b6d4;
|
|
893
|
+
--colors-cyan-600: #0891b2;
|
|
894
|
+
--colors-cyan-700: #0e7490;
|
|
895
|
+
--colors-cyan-800: #155e75;
|
|
896
|
+
--colors-cyan-900: #164e63;
|
|
897
|
+
--colors-cyan-950: #083344;
|
|
898
|
+
--colors-teal-50: #f0fdfa;
|
|
899
|
+
--colors-teal-100: #ccfbf1;
|
|
900
|
+
--colors-teal-200: #99f6e4;
|
|
901
|
+
--colors-teal-300: #5eead4;
|
|
902
|
+
--colors-teal-400: #2dd4bf;
|
|
903
|
+
--colors-teal-500: #14b8a6;
|
|
904
|
+
--colors-teal-600: #0d9488;
|
|
905
|
+
--colors-teal-700: #0f766e;
|
|
906
|
+
--colors-teal-800: #115e59;
|
|
907
|
+
--colors-teal-900: #134e4a;
|
|
908
|
+
--colors-teal-950: #042f2e;
|
|
909
|
+
--colors-emerald-50: #ecfdf5;
|
|
910
|
+
--colors-emerald-100: #d1fae5;
|
|
911
|
+
--colors-emerald-200: #a7f3d0;
|
|
912
|
+
--colors-emerald-300: #6ee7b7;
|
|
913
|
+
--colors-emerald-400: #34d399;
|
|
914
|
+
--colors-emerald-500: #10b981;
|
|
915
|
+
--colors-emerald-600: #059669;
|
|
916
|
+
--colors-emerald-700: #047857;
|
|
917
|
+
--colors-emerald-800: #065f46;
|
|
918
|
+
--colors-emerald-900: #064e3b;
|
|
919
|
+
--colors-emerald-950: #022c22;
|
|
920
|
+
--colors-green-50: #f0fdf4;
|
|
921
|
+
--colors-green-100: #dcfce7;
|
|
922
|
+
--colors-green-200: #bbf7d0;
|
|
923
|
+
--colors-green-300: #86efac;
|
|
924
|
+
--colors-green-400: #4ade80;
|
|
925
|
+
--colors-green-500: #22c55e;
|
|
926
|
+
--colors-green-600: #16a34a;
|
|
927
|
+
--colors-green-700: #15803d;
|
|
928
|
+
--colors-green-800: #166534;
|
|
929
|
+
--colors-green-900: #14532d;
|
|
930
|
+
--colors-green-950: #052e16;
|
|
931
|
+
--colors-lime-50: #f7fee7;
|
|
932
|
+
--colors-lime-100: #ecfccb;
|
|
933
|
+
--colors-lime-200: #d9f99d;
|
|
934
|
+
--colors-lime-300: #bef264;
|
|
935
|
+
--colors-lime-400: #a3e635;
|
|
936
|
+
--colors-lime-500: #84cc16;
|
|
937
|
+
--colors-lime-600: #65a30d;
|
|
938
|
+
--colors-lime-700: #4d7c0f;
|
|
939
|
+
--colors-lime-800: #3f6212;
|
|
940
|
+
--colors-lime-900: #365314;
|
|
941
|
+
--colors-lime-950: #1a2e05;
|
|
942
|
+
--colors-yellow-50: #fefce8;
|
|
943
|
+
--colors-yellow-100: #fef9c3;
|
|
944
|
+
--colors-yellow-200: #fef08a;
|
|
945
|
+
--colors-yellow-300: #fde047;
|
|
946
|
+
--colors-yellow-400: #facc15;
|
|
947
|
+
--colors-yellow-500: #eab308;
|
|
948
|
+
--colors-yellow-600: #ca8a04;
|
|
949
|
+
--colors-yellow-700: #a16207;
|
|
950
|
+
--colors-yellow-800: #854d0e;
|
|
951
|
+
--colors-yellow-900: #713f12;
|
|
952
|
+
--colors-yellow-950: #422006;
|
|
953
|
+
--colors-amber-50: #fffbeb;
|
|
954
|
+
--colors-amber-100: #fef3c7;
|
|
955
|
+
--colors-amber-200: #fde68a;
|
|
956
|
+
--colors-amber-300: #fcd34d;
|
|
957
|
+
--colors-amber-400: #fbbf24;
|
|
958
|
+
--colors-amber-500: #f59e0b;
|
|
959
|
+
--colors-amber-600: #d97706;
|
|
960
|
+
--colors-amber-700: #b45309;
|
|
961
|
+
--colors-amber-800: #92400e;
|
|
962
|
+
--colors-amber-900: #78350f;
|
|
963
|
+
--colors-amber-950: #451a03;
|
|
964
|
+
--colors-orange-50: #fff7ed;
|
|
965
|
+
--colors-orange-100: #ffedd5;
|
|
966
|
+
--colors-orange-200: #fed7aa;
|
|
967
|
+
--colors-orange-300: #fdba74;
|
|
968
|
+
--colors-orange-400: #fb923c;
|
|
969
|
+
--colors-orange-500: #f97316;
|
|
970
|
+
--colors-orange-600: #ea580c;
|
|
971
|
+
--colors-orange-700: #c2410c;
|
|
972
|
+
--colors-orange-800: #9a3412;
|
|
973
|
+
--colors-orange-900: #7c2d12;
|
|
974
|
+
--colors-orange-950: #431407;
|
|
975
|
+
--colors-red-50: #fef2f2;
|
|
976
|
+
--colors-red-100: #fee2e2;
|
|
977
|
+
--colors-red-200: #fecaca;
|
|
978
|
+
--colors-red-300: #fca5a5;
|
|
979
|
+
--colors-red-400: #f87171;
|
|
980
|
+
--colors-red-500: #ef4444;
|
|
981
|
+
--colors-red-600: #dc2626;
|
|
982
|
+
--colors-red-700: #b91c1c;
|
|
983
|
+
--colors-red-800: #991b1b;
|
|
984
|
+
--colors-red-900: #7f1d1d;
|
|
985
|
+
--colors-red-950: #450a0a;
|
|
986
|
+
--colors-neutral-50: #fafafa;
|
|
987
|
+
--colors-neutral-100: #f5f5f5;
|
|
988
|
+
--colors-neutral-200: #e5e5e5;
|
|
989
|
+
--colors-neutral-300: #d4d4d4;
|
|
990
|
+
--colors-neutral-400: #a3a3a3;
|
|
991
|
+
--colors-neutral-500: #737373;
|
|
992
|
+
--colors-neutral-600: #525252;
|
|
993
|
+
--colors-neutral-700: #404040;
|
|
994
|
+
--colors-neutral-800: #262626;
|
|
995
|
+
--colors-neutral-900: #171717;
|
|
996
|
+
--colors-neutral-950: #0a0a0a;
|
|
997
|
+
--colors-stone-50: #fafaf9;
|
|
998
|
+
--colors-stone-100: #f5f5f4;
|
|
999
|
+
--colors-stone-200: #e7e5e4;
|
|
1000
|
+
--colors-stone-300: #d6d3d1;
|
|
1001
|
+
--colors-stone-400: #a8a29e;
|
|
1002
|
+
--colors-stone-500: #78716c;
|
|
1003
|
+
--colors-stone-600: #57534e;
|
|
1004
|
+
--colors-stone-700: #44403c;
|
|
1005
|
+
--colors-stone-800: #292524;
|
|
1006
|
+
--colors-stone-900: #1c1917;
|
|
1007
|
+
--colors-stone-950: #0c0a09;
|
|
1008
|
+
--colors-zinc-50: #fafafa;
|
|
1009
|
+
--colors-zinc-100: #f4f4f5;
|
|
1010
|
+
--colors-zinc-200: #e4e4e7;
|
|
1011
|
+
--colors-zinc-300: #d4d4d8;
|
|
1012
|
+
--colors-zinc-400: #a1a1aa;
|
|
1013
|
+
--colors-zinc-500: #71717a;
|
|
1014
|
+
--colors-zinc-600: #52525b;
|
|
1015
|
+
--colors-zinc-700: #3f3f46;
|
|
1016
|
+
--colors-zinc-800: #27272a;
|
|
1017
|
+
--colors-zinc-900: #18181b;
|
|
1018
|
+
--colors-zinc-950: #09090b;
|
|
1019
|
+
--colors-gray-50: #f9fafb;
|
|
1020
|
+
--colors-gray-100: #f3f4f6;
|
|
1021
|
+
--colors-gray-200: #e5e7eb;
|
|
1022
|
+
--colors-gray-300: #d1d5db;
|
|
1023
|
+
--colors-gray-400: #9ca3af;
|
|
1024
|
+
--colors-gray-500: #6b7280;
|
|
1025
|
+
--colors-gray-600: #4b5563;
|
|
1026
|
+
--colors-gray-700: #374151;
|
|
1027
|
+
--colors-gray-800: #1f2937;
|
|
1028
|
+
--colors-gray-900: #111827;
|
|
1029
|
+
--colors-gray-950: #030712;
|
|
1030
|
+
--colors-slate-50: #f8fafc;
|
|
1031
|
+
--colors-slate-100: #f1f5f9;
|
|
1032
|
+
--colors-slate-200: #e2e8f0;
|
|
1033
|
+
--colors-slate-300: #cbd5e1;
|
|
1034
|
+
--colors-slate-400: #94a3b8;
|
|
1035
|
+
--colors-slate-500: #64748b;
|
|
1036
|
+
--colors-slate-600: #475569;
|
|
1037
|
+
--colors-slate-700: #334155;
|
|
1038
|
+
--colors-slate-800: #1e293b;
|
|
1039
|
+
--colors-slate-900: #0f172a;
|
|
1040
|
+
--colors-slate-950: #020617;
|
|
1041
|
+
--colors-hover-light-success: #ECFDF3d9;
|
|
1042
|
+
--colors-hover-light-warning: #FFFAEBd9;
|
|
1043
|
+
--colors-hover-light-error: #FEF3F2d9;
|
|
1044
|
+
--colors-hover-light-active: #DCEFFCd9;
|
|
1045
|
+
--colors-hover-light-gray: #F2F4F7d9;
|
|
1046
|
+
--colors-hover-dark-success: #12B76Ad9;
|
|
1047
|
+
--colors-hover-dark-warning: #DC6803d9;
|
|
1048
|
+
--colors-hover-dark-error: #F04438d9;
|
|
1049
|
+
--colors-hover-dark-active: #4c4ff1d9;
|
|
1050
|
+
--colors-hover-dark-gray: #667085d9;
|
|
1051
|
+
--colors-light-success: #ECFDF3;
|
|
1052
|
+
--colors-light-warning: #FFFAEB;
|
|
1053
|
+
--colors-light-error: #FEF3F2;
|
|
1054
|
+
--colors-light-active: #DCEFFC;
|
|
1055
|
+
--colors-light-gray: #F2F4F7;
|
|
1056
|
+
--colors-dark-success: #12B76A;
|
|
1057
|
+
--colors-dark-warning: #DC6803;
|
|
1058
|
+
--colors-dark-error: #F04438;
|
|
1059
|
+
--colors-dark-active: #4c4ff1;
|
|
1060
|
+
--colors-dark-gray: #667085;
|
|
1061
|
+
--colors-text-normal: #1D2939;
|
|
1062
|
+
--colors-text-label: #475467;
|
|
1063
|
+
--colors-text-light: #667085;
|
|
1064
|
+
--colors-text-success: #027A48;
|
|
1065
|
+
--colors-text-warning: #B54708;
|
|
1066
|
+
--colors-text-error: #B42318;
|
|
1067
|
+
--colors-text-active: #5724e8;
|
|
1068
|
+
--colors-text-gray: #344054;
|
|
1069
|
+
--colors-decoration-success: #6CE9A6;
|
|
1070
|
+
--colors-decoration-warning: #FEC84B;
|
|
1071
|
+
--colors-decoration-error: #FDA29B;
|
|
1072
|
+
--colors-decoration-active: #8da4f4;
|
|
1073
|
+
--colors-decoration-gray: #D0D5DD;
|
|
1074
|
+
--colors-grayscale-0: var(--colors-white);
|
|
1075
|
+
--colors-grayscale-50: var(--colors-zinc-50);
|
|
1076
|
+
--colors-grayscale-100: var(--colors-zinc-100);
|
|
1077
|
+
--colors-grayscale-200: var(--colors-zinc-200);
|
|
1078
|
+
--colors-grayscale-300: var(--colors-zinc-300);
|
|
1079
|
+
--colors-grayscale-400: var(--colors-zinc-400);
|
|
1080
|
+
--colors-grayscale-500: var(--colors-zinc-500);
|
|
1081
|
+
--colors-grayscale-600: var(--colors-zinc-600);
|
|
1082
|
+
--colors-grayscale-700: var(--colors-zinc-700);
|
|
1083
|
+
--colors-grayscale-800: var(--colors-zinc-800);
|
|
1084
|
+
--colors-grayscale-900: var(--colors-zinc-900);
|
|
1085
|
+
--colors-grayscale-950: var(--colors-zinc-950);
|
|
1086
|
+
--sizes-0: 0rem;
|
|
1087
|
+
--sizes-1: 0.25rem;
|
|
1088
|
+
--sizes-2: 0.5rem;
|
|
1089
|
+
--sizes-3: 0.75rem;
|
|
1090
|
+
--sizes-4: 1rem;
|
|
1091
|
+
--sizes-5: 1.25rem;
|
|
1092
|
+
--sizes-6: 1.5rem;
|
|
1093
|
+
--sizes-7: 1.75rem;
|
|
1094
|
+
--sizes-8: 2rem;
|
|
1095
|
+
--sizes-9: 2.25rem;
|
|
1096
|
+
--sizes-10: 2.5rem;
|
|
1097
|
+
--sizes-11: 2.75rem;
|
|
1098
|
+
--sizes-12: 3rem;
|
|
1099
|
+
--sizes-14: 3.5rem;
|
|
1100
|
+
--sizes-16: 4rem;
|
|
1101
|
+
--sizes-20: 5rem;
|
|
1102
|
+
--sizes-24: 6rem;
|
|
1103
|
+
--sizes-28: 7rem;
|
|
1104
|
+
--sizes-32: 8rem;
|
|
1105
|
+
--sizes-36: 9rem;
|
|
1106
|
+
--sizes-40: 10rem;
|
|
1107
|
+
--sizes-44: 11rem;
|
|
1108
|
+
--sizes-48: 12rem;
|
|
1109
|
+
--sizes-52: 13rem;
|
|
1110
|
+
--sizes-56: 14rem;
|
|
1111
|
+
--sizes-60: 15rem;
|
|
1112
|
+
--sizes-64: 16rem;
|
|
1113
|
+
--sizes-72: 18rem;
|
|
1114
|
+
--sizes-80: 20rem;
|
|
1115
|
+
--sizes-96: 24rem;
|
|
1116
|
+
--sizes-0\.5: 0.125rem;
|
|
1117
|
+
--sizes-1\.5: 0.375rem;
|
|
1118
|
+
--sizes-2\.5: 0.625rem;
|
|
1119
|
+
--sizes-3\.5: 0.875rem;
|
|
1120
|
+
--sizes-xs: 20rem;
|
|
1121
|
+
--sizes-sm: 24rem;
|
|
1122
|
+
--sizes-md: 28rem;
|
|
1123
|
+
--sizes-lg: 32rem;
|
|
1124
|
+
--sizes-xl: 36rem;
|
|
1125
|
+
--sizes-2xl: 42rem;
|
|
1126
|
+
--sizes-3xl: 48rem;
|
|
1127
|
+
--sizes-4xl: 56rem;
|
|
1128
|
+
--sizes-5xl: 64rem;
|
|
1129
|
+
--sizes-6xl: 72rem;
|
|
1130
|
+
--sizes-7xl: 80rem;
|
|
1131
|
+
--sizes-8xl: 90rem;
|
|
1132
|
+
--sizes-prose: 65ch;
|
|
1133
|
+
--sizes-full: 100%;
|
|
1134
|
+
--sizes-min: min-content;
|
|
1135
|
+
--sizes-max: max-content;
|
|
1136
|
+
--sizes-fit: fit-content;
|
|
1137
|
+
--sizes-basic-almost-full: 90%;
|
|
1138
|
+
--sizes-card-xs: 175px;
|
|
1139
|
+
--sizes-card-sm: 414px;
|
|
1140
|
+
--sizes-responsive-card-xs: min(95vw,var(--sizes-card-xs));
|
|
1141
|
+
--sizes-responsive-card-sm: min(95vw,var(--sizes-card-sm));
|
|
1142
|
+
--sizes-circle: 40px;
|
|
1143
|
+
--sizes-container-smaller-xxxs: 80px;
|
|
1144
|
+
--sizes-container-smaller-xxs: 120px;
|
|
1145
|
+
--sizes-container-smaller-xs: 290px;
|
|
1146
|
+
--sizes-container-smaller-sm: 410px;
|
|
1147
|
+
--sizes-container-bigger-xs: 380px;
|
|
1148
|
+
--sizes-container-xxs: 150px;
|
|
1149
|
+
--sizes-container-xs: 350px;
|
|
1150
|
+
--sizes-container-sm: 640px;
|
|
1151
|
+
--sizes-container-md: 768px;
|
|
1152
|
+
--sizes-container-lg: 1024px;
|
|
1153
|
+
--sizes-container-xl: 1280px;
|
|
1154
|
+
--sizes-container-xxl: 1440px;
|
|
1155
|
+
--sizes-container-content-xl: 729px;
|
|
1156
|
+
--sizes-container-content-2xl: 829px;
|
|
1157
|
+
--sizes-container-grid-base-size: 220px;
|
|
1158
|
+
--sizes-container-grid-label-height: 56px;
|
|
1159
|
+
--sizes-container-grid-grid-gap: 28px;
|
|
1160
|
+
--sizes-container-side-bar-collapsed: 65px;
|
|
1161
|
+
--sizes-container-side-bar-expanded: 210px;
|
|
1162
|
+
--sizes-table-cell-min-width: 200px;
|
|
1163
|
+
--sizes-table-instances-name-cell: 300px;
|
|
1164
|
+
--sizes-table-instances-name: 200px;
|
|
1165
|
+
--sizes-table-instances-cell: 180px;
|
|
1166
|
+
--sizes-sourcecode-width: 40px;
|
|
1167
|
+
--sizes-slider-label: 40px;
|
|
1168
|
+
--sizes-skeleton-height: 40px;
|
|
1169
|
+
--sizes-skeleton-width: full;
|
|
1170
|
+
--sizes-skeleton-button-width: 150px;
|
|
1171
|
+
--sizes-skeleton-button-height: var(--sizes-skeleton-height);
|
|
1172
|
+
--sizes-skeleton-input-width: 230px;
|
|
1173
|
+
--sizes-skeleton-input-height: var(--sizes-skeleton-height);
|
|
1174
|
+
--sizes-skeleton-textarea-width: var(--sizes-skeleton-width);
|
|
1175
|
+
--sizes-skeleton-textarea-height: 80px;
|
|
1176
|
+
--sizes-skeleton-avatar-width: var(--sizes-skeleton-height);
|
|
1177
|
+
--sizes-skeleton-avatar-height: var(--sizes-skeleton-height);
|
|
1178
|
+
--sizes-skeleton-grid-width-xs: 32px;
|
|
1179
|
+
--sizes-skeleton-grid-width-sm: 64px;
|
|
1180
|
+
--sizes-skeleton-grid-width-md: 128px;
|
|
1181
|
+
--sizes-skeleton-grid-width-lg: 256px;
|
|
1182
|
+
--sizes-skeleton-grid-width-xl: 512px;
|
|
1183
|
+
--sizes-skeleton-grid-height-xs: 32px;
|
|
1184
|
+
--sizes-skeleton-grid-height-sm: 64px;
|
|
1185
|
+
--sizes-skeleton-grid-height-md: 128px;
|
|
1186
|
+
--sizes-skeleton-grid-height-lg: 256px;
|
|
1187
|
+
--sizes-skeleton-grid-height-xl: 512px;
|
|
1188
|
+
--sizes-skeleton-table-height-sm: 32px;
|
|
1189
|
+
--sizes-skeleton-table-height-md: 64px;
|
|
1190
|
+
--sizes-skeleton-table-height-lg: 128px;
|
|
1191
|
+
--sizes-skeleton-table-height-xl: 256px;
|
|
1192
|
+
--sizes-icon-xxs: 8px;
|
|
1193
|
+
--sizes-icon-xs: 16px;
|
|
1194
|
+
--sizes-icon-sm: 20px;
|
|
1195
|
+
--sizes-icon-md: 24px;
|
|
1196
|
+
--sizes-icon-lg: 32px;
|
|
1197
|
+
--sizes-icon-xl: 40px;
|
|
1198
|
+
--sizes-icon-xxl: 48px;
|
|
1199
|
+
--sizes-icon-smaller-xs: 14px;
|
|
1200
|
+
--sizes-custom-handle-dot: 8px;
|
|
1201
|
+
--sizes-breakpoint-2lg: 1100px;
|
|
1202
|
+
--sizes-breakpoint-sm: 640px;
|
|
1203
|
+
--sizes-breakpoint-md: 768px;
|
|
1204
|
+
--sizes-breakpoint-lg: 1024px;
|
|
1205
|
+
--sizes-breakpoint-xl: 1280px;
|
|
1206
|
+
--sizes-breakpoint-2xl: 1536px;
|
|
1207
|
+
--breakpoints-2lg: 1100px;
|
|
1208
|
+
--breakpoints-sm: 640px;
|
|
1209
|
+
--breakpoints-md: 768px;
|
|
1210
|
+
--breakpoints-lg: 1024px;
|
|
1211
|
+
--breakpoints-xl: 1280px;
|
|
1212
|
+
--breakpoints-2xl: 1536px;
|
|
1213
|
+
--sizes-icon-primary: var(--sizes-icon-xs);
|
|
1214
|
+
--colors-background: var(--colors-grayscale-0);
|
|
1215
|
+
--colors-foreground: var(--colors-grayscale-950);
|
|
1216
|
+
--colors-muted: var(--colors-grayscale-100);
|
|
1217
|
+
--colors-muted-foreground: var(--colors-grayscale-500);
|
|
1218
|
+
--colors-card: var(--colors-grayscale-0);
|
|
1219
|
+
--colors-card-foreground: var(--colors-grayscale-950);
|
|
1220
|
+
--colors-popover: var(--colors-grayscale-0);
|
|
1221
|
+
--colors-popover-foreground: var(--colors-grayscale-950);
|
|
1222
|
+
--colors-border: var(--colors-grayscale-200);
|
|
1223
|
+
--colors-input: var(--colors-grayscale-200);
|
|
1224
|
+
--colors-primary: var(--colors-grayscale-900);
|
|
1225
|
+
--colors-primary-foreground: var(--colors-grayscale-50);
|
|
1226
|
+
--colors-secondary: var(--colors-grayscale-100);
|
|
1227
|
+
--colors-secondary-foreground: var(--colors-grayscale-900);
|
|
1228
|
+
--colors-accent: var(--colors-grayscale-100);
|
|
1229
|
+
--colors-accent-foreground: var(--colors-grayscale-900);
|
|
1230
|
+
--colors-destructive: var(--colors-red-500);
|
|
1231
|
+
--colors-destructive-foreground: var(--colors-grayscale-50);
|
|
1232
|
+
--colors-ring: var(--colors-grayscale-400);
|
|
1233
|
+
--borders-base: 1px solid var(--colors-border);
|
|
1234
|
+
--borders-input: 1px solid var(--colors-input);
|
|
1235
|
+
--borders-primary: 1px solid var(--colors-primary);
|
|
1236
|
+
--borders-destructive: 1px solid var(--colors-destructive);
|
|
1237
|
+
--animations-accordion-down: accordion-down 0.2s ease-out;
|
|
1238
|
+
--animations-accordion-up: accordion-up 0.2s ease-out
|
|
1239
|
+
}
|
|
1240
|
+
|
|
1241
|
+
.dark {
|
|
1242
|
+
--colors-background: var(--colors-grayscale-950);
|
|
1243
|
+
--colors-foreground: var(--colors-grayscale-50);
|
|
1244
|
+
--colors-muted: var(--colors-grayscale-800);
|
|
1245
|
+
--colors-muted-foreground: var(--colors-grayscale-400);
|
|
1246
|
+
--colors-card: var(--colors-grayscale-950);
|
|
1247
|
+
--colors-card-foreground: var(--colors-grayscale-50);
|
|
1248
|
+
--colors-popover: var(--colors-grayscale-950);
|
|
1249
|
+
--colors-popover-foreground: var(--colors-grayscale-50);
|
|
1250
|
+
--colors-border: var(--colors-grayscale-800);
|
|
1251
|
+
--colors-input: var(--colors-grayscale-800);
|
|
1252
|
+
--colors-primary: var(--colors-grayscale-50);
|
|
1253
|
+
--colors-primary-foreground: var(--colors-grayscale-900);
|
|
1254
|
+
--colors-secondary: var(--colors-grayscale-800);
|
|
1255
|
+
--colors-secondary-foreground: var(--colors-grayscale-50);
|
|
1256
|
+
--colors-accent: var(--colors-grayscale-800);
|
|
1257
|
+
--colors-accent-foreground: var(--colors-grayscale-50);
|
|
1258
|
+
--colors-destructive: var(--colors-red-700);
|
|
1259
|
+
--colors-destructive-foreground: var(--colors-red-50);
|
|
1260
|
+
--colors-ring: var(--colors-grayscale-300)
|
|
1261
|
+
}
|
|
1262
|
+
|
|
1263
|
+
@keyframes spin {
|
|
1264
|
+
to {
|
|
1265
|
+
transform: rotate(360deg)
|
|
1266
|
+
}
|
|
1267
|
+
}
|
|
1268
|
+
|
|
1269
|
+
@keyframes ping {
|
|
1270
|
+
75%, 100% {
|
|
1271
|
+
transform: scale(2);
|
|
1272
|
+
opacity: 0
|
|
1273
|
+
}
|
|
1274
|
+
}
|
|
1275
|
+
|
|
1276
|
+
@keyframes pulse {
|
|
1277
|
+
50% {
|
|
1278
|
+
opacity: .5
|
|
1279
|
+
}
|
|
1280
|
+
}
|
|
1281
|
+
|
|
1282
|
+
@keyframes bounce {
|
|
1283
|
+
0%, 100% {
|
|
1284
|
+
transform: translateY(-25%);
|
|
1285
|
+
animation-timing-function: cubic-bezier(0.8,0,1,1)
|
|
1286
|
+
}
|
|
1287
|
+
|
|
1288
|
+
50% {
|
|
1289
|
+
transform: none;
|
|
1290
|
+
animation-timing-function: cubic-bezier(0,0,0.2,1)
|
|
1291
|
+
}
|
|
1292
|
+
}
|
|
1293
|
+
|
|
1294
|
+
@keyframes enter {
|
|
1295
|
+
from {
|
|
1296
|
+
opacity: var(--shadow-panda-enter-opacity, 1);
|
|
1297
|
+
transform: translate3d(var(--shadow-panda-enter-translate-x, 0), var(--shadow-panda-enter-translate-y, 0), 0) scale3d(var(--shadow-panda-enter-scale, 1), var(--shadow-panda-enter-scale, 1), var(--shadow-panda-enter-scale, 1)) rotate(var(--shadow-panda-enter-rotate, 0))
|
|
1298
|
+
}
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1301
|
+
@keyframes exit {
|
|
1302
|
+
to {
|
|
1303
|
+
opacity: var(--shadow-panda-exit-opacity, 1);
|
|
1304
|
+
transform: translate3d(var(--shadow-panda-exit-translate-x, 0), var(--shadow-panda-exit-translate-y, 0), 0) scale3d(var(--shadow-panda-exit-scale, 1), var(--shadow-panda-exit-scale, 1), var(--shadow-panda-exit-scale, 1)) rotate(var(--shadow-panda-exit-rotate, 0))
|
|
1305
|
+
}
|
|
1306
|
+
}
|
|
1307
|
+
|
|
1308
|
+
@keyframes accordion-down {
|
|
1309
|
+
from {
|
|
1310
|
+
height: 0
|
|
1311
|
+
}
|
|
1312
|
+
|
|
1313
|
+
to {
|
|
1314
|
+
height: var(--radix-accordion-content-height)
|
|
1315
|
+
}
|
|
1316
|
+
}
|
|
1317
|
+
|
|
1318
|
+
@keyframes accordion-up {
|
|
1319
|
+
from {
|
|
1320
|
+
height: var(--radix-accordion-content-height)
|
|
1321
|
+
}
|
|
1322
|
+
|
|
1323
|
+
to {
|
|
1324
|
+
height: 0
|
|
1325
|
+
}
|
|
1326
|
+
}
|
|
1327
|
+
}
|
|
1328
|
+
|
|
1329
|
+
@layer utilities {
|
|
1330
|
+
.bg_dark\.warning\! {
|
|
1331
|
+
background-color: var(--colors-dark-warning) !important
|
|
1332
|
+
}
|
|
1333
|
+
|
|
1334
|
+
.bg_dark\.success\! {
|
|
1335
|
+
background-color: var(--colors-dark-success) !important
|
|
1336
|
+
}
|
|
1337
|
+
|
|
1338
|
+
.w_custom\.handle\.dot\! {
|
|
1339
|
+
width: var(--sizes-custom-handle-dot) !important
|
|
1340
|
+
}
|
|
1341
|
+
|
|
1342
|
+
.h_custom\.handle\.dot\! {
|
|
1343
|
+
height: var(--sizes-custom-handle-dot) !important
|
|
1344
|
+
}
|
|
1345
|
+
|
|
1346
|
+
.border_none\! {
|
|
1347
|
+
border: var(--borders-none) !important
|
|
1348
|
+
}
|
|
1349
|
+
|
|
1350
|
+
.ml_xs {
|
|
1351
|
+
margin-left: var(--spacing-xs)
|
|
1352
|
+
}
|
|
1353
|
+
|
|
1354
|
+
.mr_xs {
|
|
1355
|
+
margin-right: var(--spacing-xs)
|
|
1356
|
+
}
|
|
1357
|
+
|
|
1358
|
+
.min-w_container\.smaller\.xxs {
|
|
1359
|
+
min-width: var(--sizes-container-smaller-xxs)
|
|
1360
|
+
}
|
|
1361
|
+
|
|
1362
|
+
.bg_white {
|
|
1363
|
+
background-color: var(--colors-white)
|
|
1364
|
+
}
|
|
1365
|
+
|
|
1366
|
+
.w_full {
|
|
1367
|
+
width: var(--sizes-full)
|
|
1368
|
+
}
|
|
1369
|
+
|
|
1370
|
+
.bg_light\.gray {
|
|
1371
|
+
background-color: var(--colors-light-gray)
|
|
1372
|
+
}
|
|
1373
|
+
|
|
1374
|
+
.rounded-t_common {
|
|
1375
|
+
border-top-left-radius: var(--radii-common);
|
|
1376
|
+
border-top-right-radius: var(--radii-common)
|
|
1377
|
+
}
|
|
1378
|
+
|
|
1379
|
+
.w_icon\.sm {
|
|
1380
|
+
width: var(--sizes-icon-sm)
|
|
1381
|
+
}
|
|
1382
|
+
|
|
1383
|
+
.h_icon\.sm {
|
|
1384
|
+
height: var(--sizes-icon-sm)
|
|
1385
|
+
}
|
|
1386
|
+
|
|
1387
|
+
.w_auto {
|
|
1388
|
+
width: auto
|
|
1389
|
+
}
|
|
1390
|
+
|
|
1391
|
+
.h_auto {
|
|
1392
|
+
height: auto
|
|
1393
|
+
}
|
|
1394
|
+
|
|
1395
|
+
.right_xs {
|
|
1396
|
+
right: var(--spacing-xs)
|
|
1397
|
+
}
|
|
1398
|
+
|
|
1399
|
+
.text_unset {
|
|
1400
|
+
color: unset
|
|
1401
|
+
}
|
|
1402
|
+
|
|
1403
|
+
.text_transparent {
|
|
1404
|
+
color: var(--colors-transparent)
|
|
1405
|
+
}
|
|
1406
|
+
|
|
1407
|
+
.items_start {
|
|
1408
|
+
align-items: start
|
|
1409
|
+
}
|
|
1410
|
+
|
|
1411
|
+
.flex_row {
|
|
1412
|
+
flex-direction: row
|
|
1413
|
+
}
|
|
1414
|
+
|
|
1415
|
+
.flex_row-reverse {
|
|
1416
|
+
flex-direction: row-reverse
|
|
1417
|
+
}
|
|
1418
|
+
|
|
1419
|
+
.items_end {
|
|
1420
|
+
align-items: end
|
|
1421
|
+
}
|
|
1422
|
+
|
|
1423
|
+
.pos_relative {
|
|
1424
|
+
position: relative
|
|
1425
|
+
}
|
|
1426
|
+
|
|
1427
|
+
.flex_column {
|
|
1428
|
+
flex-direction: column
|
|
1429
|
+
}
|
|
1430
|
+
|
|
1431
|
+
.justify_space-between {
|
|
1432
|
+
justify-content: space-between
|
|
1433
|
+
}
|
|
1434
|
+
|
|
1435
|
+
.gap_xs {
|
|
1436
|
+
gap: var(--spacing-xs)
|
|
1437
|
+
}
|
|
1438
|
+
|
|
1439
|
+
.gap_sm {
|
|
1440
|
+
gap: var(--spacing-sm)
|
|
1441
|
+
}
|
|
1442
|
+
|
|
1443
|
+
.py_xs {
|
|
1444
|
+
padding-block: var(--spacing-xs)
|
|
1445
|
+
}
|
|
1446
|
+
|
|
1447
|
+
.d_flex {
|
|
1448
|
+
display: flex
|
|
1449
|
+
}
|
|
1450
|
+
|
|
1451
|
+
.items_center {
|
|
1452
|
+
align-items: center
|
|
1453
|
+
}
|
|
1454
|
+
|
|
1455
|
+
.justify_center {
|
|
1456
|
+
justify-content: center
|
|
1457
|
+
}
|
|
1458
|
+
|
|
1459
|
+
.h_container\.xs {
|
|
1460
|
+
height: var(--sizes-container-xs)
|
|
1461
|
+
}
|
|
1462
|
+
|
|
1463
|
+
.rounded_common {
|
|
1464
|
+
border-radius: var(--radii-common)
|
|
1465
|
+
}
|
|
1466
|
+
|
|
1467
|
+
.border_base {
|
|
1468
|
+
border: var(--borders-base)
|
|
1469
|
+
}
|
|
1470
|
+
|
|
1471
|
+
.\[\&\:hover_\.node-help-icon\]\:text_text\.normal:hover .node-help-icon {
|
|
1472
|
+
color: var(--colors-text-normal)
|
|
1473
|
+
}
|
|
1474
|
+
}
|