untitledui 0.1.57 → 0.1.59

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.
@@ -0,0 +1,69 @@
1
+ @import "tailwindcss";
2
+ @import "./theme.css";
3
+ @import "./typography.css";
4
+
5
+ @plugin "@tailwindcss/typography";
6
+ @plugin "tailwindcss-react-aria-components";
7
+ @plugin "tailwindcss-animate";
8
+
9
+ @custom-variant dark (&:where(.dark-mode, .dark-mode *));
10
+ @custom-variant label (& [data-label]);
11
+ @custom-variant focus-input-within (&:has(input:focus));
12
+
13
+ @utility scrollbar-hide {
14
+ /* For Webkit-based browsers (Chrome, Safari and Opera) */
15
+ &::-webkit-scrollbar {
16
+ display: none;
17
+ -webkit-appearance: none;
18
+ }
19
+
20
+ /* For IE, Edge and Firefox */
21
+ -ms-overflow-style: none; /* IE and Edge */
22
+ scrollbar-width: none; /* Firefox */
23
+ }
24
+
25
+ @utility transition-inherit-all {
26
+ transition-property: inherit;
27
+ transition-duration: inherit;
28
+ transition-timing-function: inherit;
29
+ }
30
+
31
+ html,
32
+ body {
33
+ font-family: var(--font-body);
34
+ -webkit-font-smoothing: antialiased;
35
+ -moz-osx-font-smoothing: grayscale;
36
+ -webkit-font-variant-ligatures: contextual;
37
+ font-variant-ligatures: contextual;
38
+ -webkit-font-kerning: normal;
39
+ font-kerning: normal;
40
+ }
41
+
42
+ /* Hide the default expand arrow on Safari. */
43
+ details summary::-webkit-details-marker {
44
+ display: none;
45
+ }
46
+
47
+ /* Hide default arrows from number inputs. */
48
+ /* Chrome, Safari, Edge, Opera */
49
+ input::-webkit-outer-spin-button,
50
+ input::-webkit-inner-spin-button {
51
+ -webkit-appearance: none;
52
+ margin: 0;
53
+ }
54
+ /* Firefox */
55
+ input[type="number"] {
56
+ -moz-appearance: textfield;
57
+ }
58
+
59
+ /* Hide the default clear button (X) from search inputs. */
60
+ input[type="search"]::-webkit-search-cancel-button {
61
+ -webkit-appearance: none;
62
+ }
63
+
64
+ /* Hide the default outline on chart elements. */
65
+ .recharts-surface,
66
+ .recharts-surface g,
67
+ .recharts-surface path {
68
+ outline: none;
69
+ }