@luxfi/ui 5.3.23 → 5.3.24

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luxfi/ui",
3
- "version": "5.3.23",
3
+ "version": "5.3.24",
4
4
  "description": "Library that contains shared UI primitives, support for a common design system, and other boilerplate support.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",
File without changes
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,30 @@
1
+ @tailwind base;
2
+
3
+ @layer base {
4
+ @font-face {
5
+ font-family: "DrukWide";
6
+ src: url("/fonts/Druk-Wide-Medium.ttf");
7
+ font-weight: 500;
8
+ font-style: normal;
9
+ }
10
+ @font-face {
11
+ font-family: "DrukWide";
12
+ src: url("/fonts/Druk-Wide-Bold.ttf");
13
+ font-weight: 700;
14
+ font-style: normal;
15
+ }
16
+ @font-face {
17
+ font-family: "inter";
18
+ src: url("/fonts/InterVariable.woff2") format("woff2"),
19
+ url("/fonts/InterVariable.ttf") format("ttf");
20
+ font-weight: 500;
21
+ font-style: normal;
22
+ }
23
+ @font-face {
24
+ font-family: "inter";
25
+ src: url("/fonts/InterVariable-Italic.woff2") format("woff2"),
26
+ url("/fonts/InterVariable-Italic.ttf") format("ttf");
27
+ font-weight: 500;
28
+ font-style: italic;
29
+ }
30
+ }
@@ -0,0 +1,52 @@
1
+ /* Note, preflight is applied first:
2
+ https://unpkg.com/tailwindcss@3.3.5/src/css/preflight.css
3
+ */
4
+ @import "tailwindcss/base";
5
+
6
+ /* see https://stackoverflow.com/questions/69746121/using-nextjs-how-can-you-import-in-css-using-tailwind-css */
7
+ /* @import "@hanzo/ui/style/hanzo-common"; */
8
+ @import "lux-colors";
9
+ @import "lux-fonts";
10
+
11
+ @import "tailwindcss/components";
12
+ @import "tailwindcss/utilities";
13
+
14
+ div.nextjs-toast-errors-parent[data-nextjs-toast="true"] {
15
+ display: none;
16
+ }
17
+
18
+ .font-heading {
19
+ @apply uppercase;
20
+ }
21
+
22
+ /* Specific style fixes for react-square-web-payments-sdk -
23
+ * reduce gap between card input and pay button
24
+ */
25
+ #rswps-card-container {
26
+ min-height: unset !important;
27
+ }
28
+
29
+ .sq-card-wrapper .sq-card-message {
30
+ margin-top: 0 !important;
31
+ margin-bottom: 0 !important;
32
+ }
33
+
34
+
35
+ .element-container:hover .icon-container-nor {
36
+ display: none;
37
+ }
38
+
39
+ .icon-container-hov {
40
+ display: none;
41
+ }
42
+
43
+ .element-container:hover .icon-container-hov {
44
+ display: block !important;
45
+ }
46
+
47
+ .element-container:hover .text-container {
48
+ background: transparent;
49
+ }
50
+ .overflow-scroll::-webkit-scrollbar{
51
+ display:none;
52
+ }