@gardenfi/garden-book 0.0.12 → 0.0.14

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.
@@ -1,5 +1,5 @@
1
1
  import { default as React } from 'react';
2
2
 
3
3
  type SvgProps = React.SVGProps<SVGSVGElement>;
4
- export declare const BitcoinIcon: React.FC<SvgProps>;
4
+ export declare const GardenLogoIcon: React.FC<SvgProps>;
5
5
  export {};
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+
3
+ type SvgProps = React.SVGProps<SVGSVGElement>;
4
+ export declare const GardenStrokeIcon: React.FC<SvgProps>;
5
+ export {};
@@ -8,7 +8,7 @@ import { ArrowNorthEastIcon } from './ArrowNorthEastIcon';
8
8
  import { ArrowNorthWestIcon } from './ArrowNorthWestIcon';
9
9
  import { ArrowSouthEastIcon } from './ArrowSouthEastIcon';
10
10
  import { ArrowSouthWestIcon } from './ArrowSouthWestIcon';
11
- import { BitcoinIcon } from './BitcoinIcon';
11
+ import { GardenLogoIcon } from './GardenLogoIcon';
12
12
  import { BTCIcon } from './BTCIcon';
13
13
  import { CheckIcon } from './CheckIcon';
14
14
  import { ClockIcon } from './ClockIcon';
@@ -18,20 +18,21 @@ import { EditIcon } from './EditIcon';
18
18
  import { EthereumIcon } from './EthereumIcon';
19
19
  import { ExchangeIcon } from './ExchangeIcon';
20
20
  import { GMXIcon } from './GMXIcon';
21
+ import { GardenStrokeIcon } from './GardenStrokeIcon';
21
22
  import { InfoIcon } from './InfoIcon';
22
23
  import { KeyboardDownIcon } from './KeyboardDownIcon';
23
24
  import { KeyboardLeftIcon } from './KeyboardLeftIcon';
24
25
  import { KeyboardRightIcon } from './KeyboardRightIcon';
25
26
  import { KeyboardUpIcon } from './KeyboardUpIcon';
26
- import { LanguageIcon } from './LanguageIcon';
27
+ import { LanguageIcon } from './GlobeIcon';
27
28
  import { LinkIcon } from './LinkIcon';
28
29
  import { LockIcon } from './LockIcon';
29
30
  import { LogoutIcon } from './LogoutIcon';
30
31
  import { MenuIcon } from './MenuIcon';
31
32
  import { OpenInFullIcon } from './OpenInFullIcon';
32
33
  import { PageInfoIcon } from './PageInfoIcon';
33
- import { PolygonIcon } from './PolygonIcon';
34
- import { RadiantIcon } from './RadiantIcon';
34
+ import { PolygonIcon } from './PolygonLogo';
35
+ import { RadiantIcon } from './RadiantLogo';
35
36
  import { RadioCheckedIcon } from './RadioCheckedIcon';
36
37
  import { RadioUncheckedIcon } from './RadioUncheckedIcon';
37
38
  import { RemoveIcon } from './RemoveIcon';
@@ -39,4 +40,4 @@ import { StarIcon } from './StarIcon';
39
40
  import { WalletIcon } from './WalletIcon';
40
41
  import { SearchIcon } from './SearchIcon';
41
42
 
42
- export { AddIcon, ArbitrumIcon, ArrowDownwardIcon, ArrowLeftIcon, ArrowNorthEastIcon, ArrowNorthWestIcon, ArrowRightIcon, ArrowSouthEastIcon, ArrowSouthWestIcon, ArrowUpwardIcon, BTCIcon, BitcoinIcon, CheckIcon, ClockIcon, CloseIcon, CopyIcon, EditIcon, EthereumIcon, ExchangeIcon, GMXIcon, InfoIcon, KeyboardDownIcon, KeyboardLeftIcon, KeyboardRightIcon, KeyboardUpIcon, LanguageIcon, LinkIcon, LockIcon, LogoutIcon, MenuIcon, OpenInFullIcon, PageInfoIcon, PolygonIcon, RadiantIcon, RadioCheckedIcon, RadioUncheckedIcon, RemoveIcon, StarIcon, WalletIcon, SearchIcon, };
43
+ export { AddIcon, ArbitrumIcon, ArrowDownwardIcon, ArrowLeftIcon, ArrowNorthEastIcon, ArrowNorthWestIcon, ArrowRightIcon, ArrowSouthEastIcon, ArrowSouthWestIcon, ArrowUpwardIcon, BTCIcon, GardenLogoIcon, CheckIcon, ClockIcon, CloseIcon, CopyIcon, EditIcon, EthereumIcon, ExchangeIcon, GMXIcon, GardenStrokeIcon, InfoIcon, KeyboardDownIcon, KeyboardLeftIcon, KeyboardRightIcon, KeyboardUpIcon, LanguageIcon, LinkIcon, LockIcon, LogoutIcon, MenuIcon, OpenInFullIcon, PageInfoIcon, PolygonIcon, RadiantIcon, RadioCheckedIcon, RadioUncheckedIcon, RemoveIcon, StarIcon, WalletIcon, SearchIcon, };
@@ -0,0 +1,20 @@
1
+ import { VariantProps } from 'class-variance-authority';
2
+ import { default as React } from 'react';
3
+ import { OpacityProps } from '../Opacity/Opacity';
4
+
5
+ declare const modalStyles: (props?: ({
6
+ open?: boolean | null | undefined;
7
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string;
8
+ type ModalProps = VariantProps<typeof modalStyles> & {
9
+ onClose?: () => void;
10
+ children: React.ReactNode;
11
+ };
12
+ declare const Modal: React.FC<ModalProps> & {
13
+ Children: React.FC<ChildrenProps>;
14
+ };
15
+ type ChildrenProps = {
16
+ children: React.ReactNode;
17
+ opacityLevel: OpacityProps["level"];
18
+ className?: string;
19
+ };
20
+ export { Modal };
@@ -0,0 +1,7 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { Modal } from './Modal';
3
+
4
+ declare const meta: Meta<typeof Modal>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof meta>;
7
+ export declare const Primary: Story;
@@ -0,0 +1,11 @@
1
+ import { VariantProps } from 'class-variance-authority';
2
+ import { default as React } from 'react';
3
+
4
+ declare const OpacityStyles: (props?: ({
5
+ level?: "medium" | "extra-light" | "light" | "semi-dark" | "full" | null | undefined;
6
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string;
7
+ export type OpacityProps = React.HTMLAttributes<HTMLDivElement> & VariantProps<typeof OpacityStyles> & {
8
+ children: React.ReactNode;
9
+ };
10
+ export declare const Opacity: React.FC<OpacityProps>;
11
+ export {};
@@ -1,7 +1,7 @@
1
1
  import { Meta, StoryObj } from '@storybook/react';
2
- import { BgOpacityWrapper } from './BackgroundWrapper';
2
+ import { Opacity } from './Opacity';
3
3
 
4
- declare const meta: Meta<typeof BgOpacityWrapper>;
4
+ declare const meta: Meta<typeof Opacity>;
5
5
  export default meta;
6
6
  type Story = StoryObj<typeof meta>;
7
7
  export declare const Full: Story;
@@ -1,7 +1,7 @@
1
1
  import { Button } from './Button/Button';
2
2
  import { Typography } from './Typography/Typography';
3
- import { BgOpacityWrapper } from './Background/BackgroundWrapper';
3
+ import { Opacity } from './Opacity/Opacity';
4
4
  import { Sidebar } from './Sidebar/Sidebar';
5
5
 
6
6
  export * from './Icons';
7
- export { Button, Typography, Sidebar, BgOpacityWrapper };
7
+ export { Button, Typography, Sidebar, Opacity };
@@ -1 +1,2 @@
1
1
  export * from './atoms';
2
+ export * from './molecules';
@@ -0,0 +1,26 @@
1
+ import { FC, ReactNode, HTMLAttributes } from 'react';
2
+ import { VariantProps } from 'class-variance-authority';
3
+
4
+ declare const chipStyles: (props?: ({
5
+ type?: "small" | "mobile" | "default" | "chipButton" | null | undefined;
6
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string;
7
+ type ChipProps = VariantProps<typeof chipStyles> & {
8
+ children?: ReactNode;
9
+ };
10
+ /**
11
+ * Chip
12
+ * @param CheckBox component
13
+ * @param Logo component
14
+ * @returns Chip component
15
+ */
16
+ declare const Chip: FC<ChipProps> & {
17
+ CheckBox: FC<CheckBoxProps>;
18
+ Logo: FC<LogoProps>;
19
+ };
20
+ type CheckBoxProps = {
21
+ checked: boolean;
22
+ };
23
+ type LogoProps = HTMLAttributes<HTMLDivElement> & {
24
+ children: ReactNode;
25
+ };
26
+ export { Chip };
@@ -0,0 +1,52 @@
1
+ import { StoryObj } from '@storybook/react';
2
+
3
+ declare const meta: {
4
+ title: string;
5
+ component: import('react').FC<import('class-variance-authority').VariantProps<(props?: ({
6
+ type?: "small" | "mobile" | "default" | "chipButton" | null | undefined;
7
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string> & {
8
+ children?: import('react').ReactNode;
9
+ }> & {
10
+ CheckBox: import('react').FC<{
11
+ checked: boolean;
12
+ }>;
13
+ Logo: import('react').FC<import('react').HTMLAttributes<HTMLDivElement> & {
14
+ children: import('react').ReactNode;
15
+ }>;
16
+ };
17
+ tags: string[];
18
+ parameters: {
19
+ layout: string;
20
+ backgrounds: {
21
+ default: string;
22
+ values: {
23
+ name: string;
24
+ value: string;
25
+ }[];
26
+ };
27
+ };
28
+ argTypes: {
29
+ type: {
30
+ control: string;
31
+ options: string[];
32
+ };
33
+ };
34
+ };
35
+ export default meta;
36
+ type Story = StoryObj<typeof meta>;
37
+ export declare const Default: Story;
38
+ export declare const DefaultTrailing: Story;
39
+ export declare const DefaultLeading: Story;
40
+ export declare const DefaultBoth: Story;
41
+ export declare const DefaultLogo: Story;
42
+ export declare const Mobile: Story;
43
+ export declare const MobileLeading: Story;
44
+ export declare const MobileTrailing: Story;
45
+ export declare const MobileBoth: Story;
46
+ export declare const MobileLogo: Story;
47
+ export declare const Small: Story;
48
+ export declare const SmallLeading: Story;
49
+ export declare const SmallTrailing: Story;
50
+ export declare const SmallLogo: Story;
51
+ export declare const ChipButton: Story;
52
+ export declare const ChipButtonLogo: Story;
@@ -0,0 +1,3 @@
1
+ import { Chip } from './Chip/Chip';
2
+
3
+ export { Chip };
package/dist/styles.css CHANGED
@@ -1 +1 @@
1
- /*! tailwindcss v3.4.8 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}@font-face{font-family:Satoshi;font-weight:300;src:url(fonts/Satoshi-Light.woff2)}@font-face{font-family:Satoshi;font-weight:400;src:url(fonts/Satoshi-Regular.woff2)}@font-face{font-family:Satoshi;font-weight:500;src:url(fonts/Satoshi-Medium.woff2)}@font-face{font-family:Satoshi;font-weight:700;src:url(fonts/Satoshi-Bold.woff2)}@font-face{font-family:Satoshi;font-weight:800;src:url(fonts/Satoshi-Black.woff2)}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }.fixed{position:fixed}.inset-y-0{top:0;bottom:0}.right-0{right:0}.mx-auto{margin-left:auto;margin-right:auto}.mb-2{margin-bottom:.5rem}.mb-4{margin-bottom:1rem}.flex{display:flex}.grid{display:grid}.h-10{height:2.5rem}.h-12{height:3rem}.h-9{height:2.25rem}.w-full{width:100%}.min-w-32{min-width:8rem}.max-w-\[300px\]{max-width:300px}.translate-x-0{--tw-translate-x:0px}.translate-x-0,.translate-x-full{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-x-full{--tw-translate-x:100%}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.flex-col{flex-direction:column}.items-center{align-items:center}.gap-4{gap:1rem}.rounded-2xl{border-radius:1rem}.rounded-lg{border-radius:.5rem}.rounded-md{border-radius:.375rem}.rounded-xl{border-radius:.75rem}.border{border-width:1px}.border-gray-300{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity))}.bg-button-disabled-bg{--tw-bg-opacity:1;background-color:rgb(227 224 235/var(--tw-bg-opacity))}.bg-button-primary{--tw-bg-opacity:1;background-color:rgb(227 100 146/var(--tw-bg-opacity))}.bg-button-secondary{--tw-bg-opacity:1;background-color:rgb(85 75 106/var(--tw-bg-opacity))}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.bg-opacity-10{--tw-bg-opacity:0.1}.bg-opacity-100{--tw-bg-opacity:1}.bg-opacity-25{--tw-bg-opacity:0.25}.bg-opacity-50{--tw-bg-opacity:0.5}.bg-opacity-75{--tw-bg-opacity:0.75}.p-3{padding:.75rem}.p-4{padding:1rem}.p-5{padding:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.text-center{text-align:center}.font-satoshi{font-family:Satoshi,sans-serif}.text-4xl{font-size:2.25rem;line-height:2.5rem}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.font-normal{font-weight:400}.font-semibold{font-weight:600}.leading-4{line-height:1rem}.leading-5{line-height:1.25rem}.leading-6{line-height:1.5rem}.leading-7{line-height:1.75rem}.leading-\[48px\]{line-height:48px}.text-button-disabled-text{--tw-text-opacity:1;color:rgb(129 122 144/var(--tw-text-opacity))}.text-dark-grey{--tw-text-opacity:1;color:rgb(85 75 106/var(--tw-text-opacity))}.text-gray-600{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.opacity-50{opacity:.5}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-200{transition-duration:.2s}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:ring:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\:ring-opacity-50:focus{--tw-ring-opacity:0.5}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}@media (min-width:360px){.xs\:text-4xl{font-size:2.25rem;line-height:2.5rem}.xs\:text-base{font-size:1rem;line-height:1.5rem}.xs\:text-sm{font-size:.875rem;line-height:1.25rem}.xs\:text-xl{font-size:1.25rem;line-height:1.75rem}.xs\:text-xs{font-size:.75rem}.xs\:leading-4,.xs\:text-xs{line-height:1rem}.xs\:leading-5{line-height:1.25rem}.xs\:leading-6{line-height:1.5rem}.xs\:leading-7{line-height:1.75rem}.xs\:leading-\[48px\]{line-height:48px}}@media (min-width:600px){.sm\:text-4xl{font-size:2.25rem;line-height:2.5rem}.sm\:text-base{font-size:1rem;line-height:1.5rem}.sm\:text-sm{font-size:.875rem;line-height:1.25rem}.sm\:text-xl{font-size:1.25rem;line-height:1.75rem}.sm\:text-xs{font-size:.75rem}.sm\:leading-4,.sm\:text-xs{line-height:1rem}.sm\:leading-5{line-height:1.25rem}.sm\:leading-6{line-height:1.5rem}.sm\:leading-7{line-height:1.75rem}.sm\:leading-\[48px\]{line-height:48px}}@media (min-width:900px){.md\:w-\[360px\]{width:360px}.md\:w-\[480px\]{width:480px}.md\:text-4xl{font-size:2.25rem;line-height:2.5rem}.md\:text-base{font-size:1rem;line-height:1.5rem}.md\:text-sm{font-size:.875rem;line-height:1.25rem}.md\:text-xl{font-size:1.25rem;line-height:1.75rem}.md\:text-xs{font-size:.75rem}.md\:leading-4,.md\:text-xs{line-height:1rem}.md\:leading-5{line-height:1.25rem}.md\:leading-6{line-height:1.5rem}.md\:leading-7{line-height:1.75rem}.md\:leading-\[48px\]{line-height:48px}}@media (min-width:1200px){.lg\:text-4xl{font-size:2.25rem;line-height:2.5rem}.lg\:text-base{font-size:1rem;line-height:1.5rem}.lg\:text-sm{font-size:.875rem;line-height:1.25rem}.lg\:text-xl{font-size:1.25rem;line-height:1.75rem}.lg\:text-xs{font-size:.75rem}.lg\:leading-4,.lg\:text-xs{line-height:1rem}.lg\:leading-5{line-height:1.25rem}.lg\:leading-6{line-height:1.5rem}.lg\:leading-7{line-height:1.75rem}.lg\:leading-\[48px\]{line-height:48px}}@media (min-width:1440px){.xl\:text-4xl{font-size:2.25rem;line-height:2.5rem}.xl\:text-base{font-size:1rem;line-height:1.5rem}.xl\:text-sm{font-size:.875rem;line-height:1.25rem}.xl\:text-xl{font-size:1.25rem;line-height:1.75rem}.xl\:text-xs{font-size:.75rem}.xl\:leading-4,.xl\:text-xs{line-height:1rem}.xl\:leading-5{line-height:1.25rem}.xl\:leading-6{line-height:1.5rem}.xl\:leading-7{line-height:1.75rem}.xl\:leading-\[48px\]{line-height:48px}}
1
+ /*! tailwindcss v3.4.8 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}@font-face{font-family:Satoshi;font-weight:300;src:url(fonts/Satoshi-Light.woff2)}@font-face{font-family:Satoshi;font-weight:400;src:url(fonts/Satoshi-Regular.woff2)}@font-face{font-family:Satoshi;font-weight:500;src:url(fonts/Satoshi-Medium.woff2)}@font-face{font-family:Satoshi;font-weight:700;src:url(fonts/Satoshi-Bold.woff2)}@font-face{font-family:Satoshi;font-weight:800;src:url(fonts/Satoshi-Black.woff2)}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }.pointer-events-none{pointer-events:none}.fixed{position:fixed}.inset-0{inset:0}.inset-y-0{top:0;bottom:0}.right-0{right:0}.z-50{z-index:50}.mx-auto{margin-left:auto;margin-right:auto}.my-2{margin-top:.5rem}.mb-2,.my-2{margin-bottom:.5rem}.mb-4{margin-bottom:1rem}.ml-auto{margin-left:auto}.flex{display:flex}.grid{display:grid}.h-10{height:2.5rem}.h-12{height:3rem}.h-9{height:2.25rem}.min-h-screen{min-height:100vh}.w-1\/12{width:8.333333%}.w-1\/3{width:33.333333%}.w-full{width:100%}.min-w-32{min-width:8rem}.max-w-\[300px\]{max-width:300px}.max-w-md{max-width:28rem}.translate-x-0{--tw-translate-x:0px}.translate-x-0,.translate-x-full{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-x-full{--tw-translate-x:100%}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes fade-in{0%{opacity:0}to{opacity:1}}.animate-fade-in{animation:fade-in .2s ease-out}.animate-fade-out{animation:overlay-out .2s ease-out}@keyframes scale-in{0%{transform:scale(.9);opacity:0}to{transform:scale(1);opacity:1}}.animate-scale-in{animation:scale-in .2s ease-out}@keyframes scale-out{0%{transform:scale(1);opacity:1}to{transform:scale(.9);opacity:0}}.animate-scale-out{animation:scale-out .2s ease-out}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.flex-col{flex-direction:column}.items-center{align-items:center}.justify-center{justify-content:center}.gap-2{gap:.5rem}.gap-4{gap:1rem}.rounded-2xl{border-radius:1rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.rounded-md{border-radius:.375rem}.rounded-xl{border-radius:.75rem}.border{border-width:1px}.border-gray-300{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity))}.bg-black{--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity))}.bg-button-disabled-bg{--tw-bg-opacity:1;background-color:rgb(227 224 235/var(--tw-bg-opacity))}.bg-button-primary{--tw-bg-opacity:1;background-color:rgb(227 100 146/var(--tw-bg-opacity))}.bg-button-secondary{--tw-bg-opacity:1;background-color:rgb(85 75 106/var(--tw-bg-opacity))}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.bg-opacity-10{--tw-bg-opacity:0.1}.bg-opacity-100{--tw-bg-opacity:1}.bg-opacity-25{--tw-bg-opacity:0.25}.bg-opacity-50{--tw-bg-opacity:0.5}.bg-opacity-75{--tw-bg-opacity:0.75}.p-3{padding:.75rem}.p-4{padding:1rem}.p-5{padding:1.25rem}.p-6{padding:1.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-1\.5{padding-top:.375rem;padding-bottom:.375rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.text-center{text-align:center}.font-satoshi{font-family:Satoshi,sans-serif}.text-4xl{font-size:2.25rem;line-height:2.5rem}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-normal{font-weight:400}.font-semibold{font-weight:600}.leading-4{line-height:1rem}.leading-5{line-height:1.25rem}.leading-6{line-height:1.5rem}.leading-7{line-height:1.75rem}.leading-\[48px\]{line-height:48px}.text-button-disabled-text{--tw-text-opacity:1;color:rgb(129 122 144/var(--tw-text-opacity))}.text-dark-grey{--tw-text-opacity:1;color:rgb(85 75 106/var(--tw-text-opacity))}.text-gray-600{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.opacity-0{opacity:0}.opacity-50{opacity:.5}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-200{transition-duration:.2s}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:ring:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\:ring-opacity-50:focus{--tw-ring-opacity:0.5}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}@media (min-width:360px){.xs\:text-4xl{font-size:2.25rem;line-height:2.5rem}.xs\:text-base{font-size:1rem;line-height:1.5rem}.xs\:text-sm{font-size:.875rem;line-height:1.25rem}.xs\:text-xl{font-size:1.25rem;line-height:1.75rem}.xs\:text-xs{font-size:.75rem}.xs\:leading-4,.xs\:text-xs{line-height:1rem}.xs\:leading-5{line-height:1.25rem}.xs\:leading-6{line-height:1.5rem}.xs\:leading-7{line-height:1.75rem}.xs\:leading-\[48px\]{line-height:48px}}@media (min-width:600px){.sm\:text-4xl{font-size:2.25rem;line-height:2.5rem}.sm\:text-base{font-size:1rem;line-height:1.5rem}.sm\:text-sm{font-size:.875rem;line-height:1.25rem}.sm\:text-xl{font-size:1.25rem;line-height:1.75rem}.sm\:text-xs{font-size:.75rem}.sm\:leading-4,.sm\:text-xs{line-height:1rem}.sm\:leading-5{line-height:1.25rem}.sm\:leading-6{line-height:1.5rem}.sm\:leading-7{line-height:1.75rem}.sm\:leading-\[48px\]{line-height:48px}}@media (min-width:900px){.md\:w-\[360px\]{width:360px}.md\:w-\[480px\]{width:480px}.md\:text-4xl{font-size:2.25rem;line-height:2.5rem}.md\:text-base{font-size:1rem;line-height:1.5rem}.md\:text-sm{font-size:.875rem;line-height:1.25rem}.md\:text-xl{font-size:1.25rem;line-height:1.75rem}.md\:text-xs{font-size:.75rem}.md\:leading-4,.md\:text-xs{line-height:1rem}.md\:leading-5{line-height:1.25rem}.md\:leading-6{line-height:1.5rem}.md\:leading-7{line-height:1.75rem}.md\:leading-\[48px\]{line-height:48px}}@media (min-width:1200px){.lg\:text-4xl{font-size:2.25rem;line-height:2.5rem}.lg\:text-base{font-size:1rem;line-height:1.5rem}.lg\:text-sm{font-size:.875rem;line-height:1.25rem}.lg\:text-xl{font-size:1.25rem;line-height:1.75rem}.lg\:text-xs{font-size:.75rem}.lg\:leading-4,.lg\:text-xs{line-height:1rem}.lg\:leading-5{line-height:1.25rem}.lg\:leading-6{line-height:1.5rem}.lg\:leading-7{line-height:1.75rem}.lg\:leading-\[48px\]{line-height:48px}}@media (min-width:1440px){.xl\:text-4xl{font-size:2.25rem;line-height:2.5rem}.xl\:text-base{font-size:1rem;line-height:1.5rem}.xl\:text-sm{font-size:.875rem;line-height:1.25rem}.xl\:text-xl{font-size:1.25rem;line-height:1.75rem}.xl\:text-xs{font-size:.75rem}.xl\:leading-4,.xl\:text-xs{line-height:1rem}.xl\:leading-5{line-height:1.25rem}.xl\:leading-6{line-height:1.5rem}.xl\:leading-7{line-height:1.75rem}.xl\:leading-\[48px\]{line-height:48px}}