@worldcoin/mini-apps-ui-kit-react 1.0.0-canary.8 → 1.0.0
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/README.md +4 -35
- package/dist/_virtual/_commonjsHelpers.js +3 -3
- package/dist/_virtual/create-plugin.js +2 -2
- package/dist/_virtual/createPlugin.js +2 -2
- package/dist/_virtual/plugin.js +5 -5
- package/dist/components/AlertDialog/AlertDialog.d.ts +1 -1
- package/dist/components/AlertDialog/AlertDialog.js +79 -74
- package/dist/components/AlertDialog/index.d.ts +2 -1
- package/dist/components/AlertDialog/use-alert-dialog.js +9 -7
- package/dist/components/BottomBar/BottomBar.d.ts +4 -3
- package/dist/components/BottomBar/BottomBar.js +11 -8
- package/dist/components/BottomBar/index.d.ts +1 -1
- package/dist/components/BulletList/BulletList.d.ts +10 -5
- package/dist/components/BulletList/BulletList.js +28 -8
- package/dist/components/BulletList/index.d.ts +1 -1
- package/dist/components/Button/Button.d.ts +4 -9
- package/dist/components/Button/Button.js +40 -48
- package/dist/components/Button/index.d.ts +1 -1
- package/dist/components/Checkbox/Checkbox.d.ts +4 -3
- package/dist/components/Checkbox/Checkbox.js +22 -20
- package/dist/components/Checkbox/index.d.ts +1 -1
- package/dist/components/Chip/Chip.d.ts +5 -4
- package/dist/components/Chip/Chip.js +25 -23
- package/dist/components/Chip/index.d.ts +1 -1
- package/dist/components/CircularIcon/CircularIcon.d.ts +5 -3
- package/dist/components/CircularIcon/CircularIcon.js +14 -12
- package/dist/components/CircularIcon/index.d.ts +1 -1
- package/dist/components/CircularState/CircularState.d.ts +8 -0
- package/dist/components/CircularState/CircularState.js +41 -0
- package/dist/components/CircularState/index.d.ts +2 -0
- package/dist/components/ClearButton/Clear.d.ts +3 -2
- package/dist/components/ClearButton/Clear.js +7 -7
- package/dist/components/ClearButton/ClearButton.d.ts +2 -2
- package/dist/components/ClearButton/ClearButton.js +23 -17
- package/dist/components/ClearButton/index.d.ts +1 -1
- package/dist/components/ColorPicker/ColorPicker.d.ts +4 -3
- package/dist/components/ColorPicker/ColorPicker.js +37 -32
- package/dist/components/ColorPicker/index.d.ts +2 -1
- package/dist/components/CountryDrawer/CountryDrawer.d.ts +14 -2
- package/dist/components/CountryDrawer/CountryDrawer.js +59 -47
- package/dist/components/CountryDrawer/index.d.ts +1 -1
- package/dist/components/CountryDrawer/useCountryFiltering.js +7 -6
- package/dist/components/CountryDrawer/useCountryGrouping.js +18 -12
- package/dist/components/Drawer/Drawer.d.ts +1 -1
- package/dist/components/Drawer/Drawer.js +58 -55
- package/dist/components/Drawer/index.d.ts +2 -1
- package/dist/components/Drawer/use-drawer.js +9 -7
- package/dist/components/Flag/Flag.d.ts +4 -4
- package/dist/components/Flag/Flag.js +24 -10
- package/dist/components/Flag/constants.d.ts +23 -2
- package/dist/components/Flag/constants.js +235 -5
- package/dist/components/Flag/index.d.ts +1 -2
- package/dist/components/Flag/types.d.ts +2 -0
- package/dist/components/Flag/utils.d.ts +1 -1
- package/dist/components/Flag/utils.js +5 -3
- package/dist/components/Form/Form.d.ts +8 -7
- package/dist/components/Form/Form.js +29 -24
- package/dist/components/Icons/ArrowDown.js +6 -6
- package/dist/components/Icons/Clear.d.ts +8 -0
- package/dist/components/Icons/Clock.d.ts +2 -0
- package/dist/components/Icons/Clock.js +30 -0
- package/dist/components/Icons/Delete.d.ts +1 -0
- package/dist/components/Icons/Fail.js +77 -75
- package/dist/components/Icons/MagicWand.js +11 -11
- package/dist/components/Icons/Magnifier.js +8 -8
- package/dist/components/Icons/Success.js +77 -75
- package/dist/components/Icons/Tick.js +7 -7
- package/dist/components/Icons/Warning.d.ts +2 -0
- package/dist/components/Icons/Warning.js +26 -0
- package/dist/components/Icons/XMark.js +7 -7
- package/dist/components/Input/Input.d.ts +14 -43
- package/dist/components/Input/Input.js +182 -130
- package/dist/components/Input/index.d.ts +1 -1
- package/dist/components/ListItem/ListItem.d.ts +3 -2
- package/dist/components/ListItem/ListItem.js +30 -28
- package/dist/components/ListItem/index.d.ts +1 -1
- package/dist/components/LiveFeedback/LiveFeedback.d.ts +21 -0
- package/dist/components/LiveFeedback/LiveFeedback.js +66 -0
- package/dist/components/LiveFeedback/index.d.ts +1 -0
- package/dist/components/Marble/Marble.d.ts +2 -2
- package/dist/components/Marble/Marble.js +12 -13
- package/dist/components/Marble/index.d.ts +1 -1
- package/dist/components/NumberPad/Delete.js +7 -6
- package/dist/components/NumberPad/NumberPad.d.ts +3 -2
- package/dist/components/NumberPad/NumberPad.js +43 -38
- package/dist/components/NumberPad/index.d.ts +1 -1
- package/dist/components/OTPField/OTPField.d.ts +53 -2
- package/dist/components/OTPField/OTPField.js +65 -40
- package/dist/components/OTPField/index.d.ts +1 -1
- package/dist/components/PasswordField/PasswordField.d.ts +4 -3
- package/dist/components/PasswordField/index.d.ts +1 -1
- package/dist/components/PasteButton/PasteButton.d.ts +2 -2
- package/dist/components/PasteButton/PasteButton.js +27 -25
- package/dist/components/PasteButton/index.d.ts +1 -1
- package/dist/components/PhoneField/CountryListItem.js +34 -33
- package/dist/components/PhoneField/CountrySelectorButton.js +29 -27
- package/dist/components/PhoneField/GroupedCountryList.js +28 -24
- package/dist/components/PhoneField/PhoneField.d.ts +5 -9
- package/dist/components/PhoneField/PhoneField.js +79 -76
- package/dist/components/PhoneField/constants.d.ts +0 -3
- package/dist/components/PhoneField/constants.js +2 -24
- package/dist/components/PhoneField/index.d.ts +1 -1
- package/dist/components/PhoneField/utils.js +31 -20
- package/dist/components/Pill/Pill.d.ts +4 -3
- package/dist/components/Pill/Pill.js +27 -24
- package/dist/components/Pill/index.d.ts +1 -1
- package/dist/components/Progress/Progress.d.ts +6 -2
- package/dist/components/Progress/Progress.js +32 -29
- package/dist/components/Progress/index.d.ts +1 -1
- package/dist/components/RadioGroup/RadioGroup.d.ts +4 -3
- package/dist/components/RadioGroup/RadioGroup.js +31 -28
- package/dist/components/RadioGroup/RadioGroupItem.d.ts +4 -3
- package/dist/components/RadioGroup/RadioGroupItem.js +20 -19
- package/dist/components/RadioGroup/index.d.ts +2 -2
- package/dist/components/SearchField/SearchField.d.ts +4 -3
- package/dist/components/SearchField/SearchField.js +73 -67
- package/dist/components/SearchField/index.d.ts +1 -1
- package/dist/components/Select/Select.d.ts +5 -4
- package/dist/components/Select/Select.js +104 -63
- package/dist/components/Select/index.d.ts +1 -1
- package/dist/components/Spinner/Spinner.d.ts +6 -2
- package/dist/components/Spinner/Spinner.js +37 -34
- package/dist/components/Spinner/index.d.ts +1 -1
- package/dist/components/Switch/Switch.d.ts +4 -3
- package/dist/components/Switch/Switch.js +21 -19
- package/dist/components/Switch/index.d.ts +1 -1
- package/dist/components/Tabs/Tabs.js +42 -37
- package/dist/components/Tabs/index.d.ts +2 -2
- package/dist/components/TextArea/TextArea.d.ts +9 -4
- package/dist/components/TextArea/TextArea.js +70 -49
- package/dist/components/TextArea/index.d.ts +1 -1
- package/dist/components/Toast/Toast.js +47 -44
- package/dist/components/Toast/Toaster.d.ts +5 -1
- package/dist/components/Toast/Toaster.js +10 -9
- package/dist/components/Toast/index.d.ts +3 -3
- package/dist/components/Toast/use-toast.d.ts +2 -10
- package/dist/components/Toast/use-toast.js +99 -67
- package/dist/components/ToggleGroup/ToggleGroup.js +27 -18
- package/dist/components/ToggleGroup/index.d.ts +1 -0
- package/dist/components/Token/Token.d.ts +3 -2
- package/dist/components/Token/Token.js +11 -11
- package/dist/components/Token/icons/btc.js +8 -8
- package/dist/components/Token/icons/dai.js +8 -8
- package/dist/components/Token/icons/doge.d.ts +3 -0
- package/dist/components/Token/icons/doge.js +29 -0
- package/dist/components/Token/icons/eth.js +8 -8
- package/dist/components/Token/icons/index.d.ts +5 -0
- package/dist/components/Token/icons/index.js +22 -12
- package/dist/components/Token/icons/link.d.ts +3 -0
- package/dist/components/Token/icons/link.js +27 -0
- package/dist/components/Token/icons/sol.d.ts +3 -0
- package/dist/components/Token/icons/sol.js +93 -0
- package/dist/components/Token/icons/sui.d.ts +3 -0
- package/dist/components/Token/icons/sui.js +29 -0
- package/dist/components/Token/icons/usdc.js +10 -10
- package/dist/components/Token/icons/usdt.js +8 -8
- package/dist/components/Token/icons/utils.js +10 -9
- package/dist/components/Token/icons/wld.js +8 -8
- package/dist/components/Token/icons/xrp.d.ts +3 -0
- package/dist/components/Token/icons/xrp.js +34 -0
- package/dist/components/Token/index.d.ts +1 -1
- package/dist/components/TopBar/TopBar.d.ts +8 -2
- package/dist/components/TopBar/TopBar.js +34 -20
- package/dist/components/TopBar/index.d.ts +1 -1
- package/dist/components/Typography/Typography.d.ts +4 -3
- package/dist/components/Typography/Typography.js +27 -25
- package/dist/components/Typography/index.d.ts +1 -1
- package/dist/components/WalletAddressField/WalletAddressField.d.ts +4 -3
- package/dist/components/WalletAddressField/WalletAddressField.js +75 -65
- package/dist/components/WalletAddressField/index.d.ts +1 -1
- package/dist/globals.css +3 -0
- package/dist/index.d.ts +36 -35
- package/dist/index.js +95 -103
- package/dist/lib/constants/dropdownStyles.js +2 -2
- package/dist/lib/haptics.d.ts +28 -0
- package/dist/lib/haptics.js +45 -0
- package/dist/lib/utils.js +11 -9
- package/dist/node_modules/.pnpm/@floating-ui_core@1.6.8/node_modules/@floating-ui/core/dist/floating-ui.core.js +558 -368
- package/dist/node_modules/.pnpm/@floating-ui_dom@1.6.12/node_modules/@floating-ui/dom/dist/floating-ui.dom.js +515 -304
- package/dist/node_modules/.pnpm/@floating-ui_react-dom@2.1.2_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.js +258 -171
- package/dist/node_modules/.pnpm/@floating-ui_utils@0.2.8/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js +137 -102
- package/dist/node_modules/.pnpm/@floating-ui_utils@0.2.8/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +110 -86
- package/dist/node_modules/.pnpm/@radix-ui_number@1.1.0/node_modules/@radix-ui/number/dist/index.js +3 -3
- package/dist/node_modules/.pnpm/@radix-ui_primitive@1.1.1/node_modules/@radix-ui/primitive/dist/index.js +7 -5
- package/dist/node_modules/.pnpm/@radix-ui_react-arrow@1.1.1_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18.3.1_wfj52omijboqejc6zhpwkjvyjq/node_modules/@radix-ui/react-arrow/dist/index.js +17 -16
- package/dist/node_modules/.pnpm/@radix-ui_react-checkbox@1.1.3_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18._5vtvszwgvdmnkk62ia2dob365m/node_modules/@radix-ui/react-checkbox/dist/index.js +122 -96
- package/dist/node_modules/.pnpm/@radix-ui_react-collection@1.1.1_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@1_du3umibpgknzrmwryvhzp3lgou/node_modules/@radix-ui/react-collection/dist/index.js +55 -35
- package/dist/node_modules/.pnpm/@radix-ui_react-collection@1.1.2_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@1_tagbd57u5fsqga6qdjecsll7fm/node_modules/@radix-ui/react-collection/dist/index.js +55 -35
- package/dist/node_modules/.pnpm/@radix-ui_react-compose-refs@1.1.1_@types_react@18.3.18_react@18.3.1/node_modules/@radix-ui/react-compose-refs/dist/index.js +29 -19
- package/dist/node_modules/.pnpm/@radix-ui_react-compose-refs@1.1.2_@types_react@18.3.18_react@18.3.1/node_modules/@radix-ui/react-compose-refs/dist/index.js +35 -0
- package/dist/node_modules/.pnpm/@radix-ui_react-context@1.1.1_@types_react@18.3.18_react@18.3.1/node_modules/@radix-ui/react-context/dist/index.js +64 -53
- package/dist/node_modules/.pnpm/@radix-ui_react-dialog@1.1.4_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18.3._vurlugjqrhlu53o6edaj3yx2bq/node_modules/@radix-ui/react-dialog/dist/index.js +274 -195
- package/dist/node_modules/.pnpm/@radix-ui_react-direction@1.1.0_@types_react@18.3.18_react@18.3.1/node_modules/@radix-ui/react-direction/dist/index.js +6 -6
- package/dist/node_modules/.pnpm/@radix-ui_react-dismissable-layer@1.1.3_@types_react-dom@18.3.5_@types_react@18.3.18__@types__ejthwt4vwbnzwtfufv7q3bddiy/node_modules/@radix-ui/react-dismissable-layer/dist/index.js +182 -97
- package/dist/node_modules/.pnpm/@radix-ui_react-dismissable-layer@1.1.5_@types_react-dom@18.3.5_@types_react@18.3.18__@types__nitdfoqpcbroetgllwgz3is5ai/node_modules/@radix-ui/react-dismissable-layer/dist/index.js +186 -100
- package/dist/node_modules/.pnpm/@radix-ui_react-focus-guards@1.1.1_@types_react@18.3.18_react@18.3.1/node_modules/@radix-ui/react-focus-guards/dist/index.js +23 -11
- package/dist/node_modules/.pnpm/@radix-ui_react-focus-scope@1.1.1_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@_4owg5o3kd7femmpae5yic5inii/node_modules/@radix-ui/react-focus-scope/dist/index.js +170 -99
- package/dist/node_modules/.pnpm/@radix-ui_react-form@0.1.1_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18.3.18_z32yjmfa36dn2egycaeb5u52lm/node_modules/@radix-ui/react-form/dist/index.js +365 -234
- package/dist/node_modules/.pnpm/@radix-ui_react-id@1.1.0_@types_react@18.3.18_react@18.3.1/node_modules/@radix-ui/react-id/dist/index.js +11 -10
- package/dist/node_modules/.pnpm/@radix-ui_react-label@2.1.1_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18.3.1_qr7n7ocfbwauilv6obluyms2qy/node_modules/@radix-ui/react-label/dist/index.js +21 -15
- package/dist/node_modules/.pnpm/@radix-ui_react-popper@1.2.1_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18.3._z2gu7tymhfvx6ebd6lqqykecmq/node_modules/@radix-ui/react-popper/dist/index.js +206 -138
- package/dist/node_modules/.pnpm/@radix-ui_react-portal@1.1.3_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18.3._jmui37rk6fvzofztyauznikgpi/node_modules/@radix-ui/react-portal/dist/index.js +15 -13
- package/dist/node_modules/.pnpm/@radix-ui_react-portal@1.1.4_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18.3._ulc3jfxcmrz2rfz7bui53djdtu/node_modules/@radix-ui/react-portal/dist/index.js +15 -13
- package/dist/node_modules/.pnpm/@radix-ui_react-presence@1.1.2_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18._pqwkltkxenlrsgmgun6icjiigu/node_modules/@radix-ui/react-presence/dist/index.js +104 -46
- package/dist/node_modules/.pnpm/@radix-ui_react-primitive@2.0.1_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18_sspjpiczol7qxzbuuyfihuep4u/node_modules/@radix-ui/react-primitive/dist/index.js +20 -14
- package/dist/node_modules/.pnpm/@radix-ui_react-primitive@2.0.2_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18_sejcxqoscaweil2bvgwwavaoha/node_modules/@radix-ui/react-primitive/dist/index.js +20 -14
- package/dist/node_modules/.pnpm/@radix-ui_react-primitive@2.0.3_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18_ecf5vqfgocrxupsewlhf3pl374/node_modules/@radix-ui/react-primitive/dist/index.js +38 -0
- package/dist/node_modules/.pnpm/@radix-ui_react-progress@1.1.2_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18._wpsg2ubedou6txnsnvgmus4txq/node_modules/@radix-ui/react-progress/dist/index.js +71 -59
- package/dist/node_modules/.pnpm/@radix-ui_react-radio-group@1.2.2_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@_2u6lfd2xt65wmbxn7lgvaxqbmy/node_modules/@radix-ui/react-radio-group/dist/index.js +211 -161
- package/dist/node_modules/.pnpm/@radix-ui_react-roving-focus@1.1.1_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react_bkbd3syfptkiebtjifbhjosaba/node_modules/@radix-ui/react-roving-focus/dist/index.js +176 -132
- package/dist/node_modules/.pnpm/@radix-ui_react-roving-focus@1.1.2_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react_ki7uy4u3diz5446cqygvbjwuge/node_modules/@radix-ui/react-roving-focus/dist/index.js +176 -132
- package/dist/node_modules/.pnpm/@radix-ui_react-select@2.1.4_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18.3._atdh45n5c7sked5b6tbwgdz7re/node_modules/@radix-ui/react-select/dist/index.js +938 -607
- package/dist/node_modules/.pnpm/@radix-ui_react-slot@1.1.1_@types_react@18.3.18_react@18.3.1/node_modules/@radix-ui/react-slot/dist/index.js +70 -36
- package/dist/node_modules/.pnpm/@radix-ui_react-slot@1.1.2_@types_react@18.3.18_react@18.3.1/node_modules/@radix-ui/react-slot/dist/index.js +72 -34
- package/dist/node_modules/.pnpm/@radix-ui_react-slot@1.2.0_@types_react@18.3.18_react@18.3.1/node_modules/@radix-ui/react-slot/dist/index.js +88 -0
- package/dist/node_modules/.pnpm/@radix-ui_react-switch@1.1.2_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18.3._udl6ccyllphugejc6sszfrese4/node_modules/@radix-ui/react-switch/dist/index.js +104 -81
- package/dist/node_modules/.pnpm/@radix-ui_react-toast@1.2.6_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18.3.1_mux33mveszkw5z6iia6acnivvy/node_modules/@radix-ui/react-toast/dist/index.js +517 -323
- package/dist/node_modules/.pnpm/@radix-ui_react-toggle-group@1.1.2_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react_3smwloudr6a3igss4kifyxcwju/node_modules/@radix-ui/react-toggle-group/dist/index.js +139 -105
- package/dist/node_modules/.pnpm/@radix-ui_react-toggle@1.1.2_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18.3._yiv2ptaqcv244n5f7zfldmgupm/node_modules/@radix-ui/react-toggle/dist/index.js +25 -21
- package/dist/node_modules/.pnpm/@radix-ui_react-use-callback-ref@1.1.0_@types_react@18.3.18_react@18.3.1/node_modules/@radix-ui/react-use-callback-ref/dist/index.js +10 -9
- package/dist/node_modules/.pnpm/@radix-ui_react-use-controllable-state@1.1.0_@types_react@18.3.18_react@18.3.1/node_modules/@radix-ui/react-use-controllable-state/dist/index.js +36 -23
- package/dist/node_modules/.pnpm/@radix-ui_react-use-escape-keydown@1.1.0_@types_react@18.3.18_react@18.3.1/node_modules/@radix-ui/react-use-escape-keydown/dist/index.js +13 -10
- package/dist/node_modules/.pnpm/@radix-ui_react-use-layout-effect@1.1.0_@types_react@18.3.18_react@18.3.1/node_modules/@radix-ui/react-use-layout-effect/dist/index.js +3 -3
- package/dist/node_modules/.pnpm/@radix-ui_react-use-previous@1.1.0_@types_react@18.3.18_react@18.3.1/node_modules/@radix-ui/react-use-previous/dist/index.js +11 -5
- package/dist/node_modules/.pnpm/@radix-ui_react-use-size@1.1.0_@types_react@18.3.18_react@18.3.1/node_modules/@radix-ui/react-use-size/dist/index.js +34 -22
- package/dist/node_modules/.pnpm/@radix-ui_react-visually-hidden@1.1.1_@types_react-dom@18.3.5_@types_react@18.3.18__@types_re_m7thze522i3jfpb2tnge6dybgi/node_modules/@radix-ui/react-visually-hidden/dist/index.js +29 -26
- package/dist/node_modules/.pnpm/@radix-ui_react-visually-hidden@1.1.2_@types_react-dom@18.3.5_@types_react@18.3.18__@types_re_omyrydx3gc2oidaiqb4gsovieq/node_modules/@radix-ui/react-visually-hidden/dist/index.js +29 -26
- package/dist/node_modules/.pnpm/@radix-ui_react-visually-hidden@1.1.3_@types_react-dom@18.3.5_@types_react@18.3.18__@types_re_cidkwodbmpmiwtvvmizcw56fem/node_modules/@radix-ui/react-visually-hidden/dist/index.js +33 -0
- package/dist/node_modules/.pnpm/@uidotdev_usehooks@2.4.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@uidotdev/usehooks/index.js +53 -26
- package/dist/node_modules/.pnpm/aria-hidden@1.2.4/node_modules/aria-hidden/dist/es2015/index.js +111 -41
- package/dist/node_modules/.pnpm/class-variance-authority@0.7.1/node_modules/class-variance-authority/dist/index.js +40 -30
- package/dist/node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.js +13 -13
- package/dist/node_modules/.pnpm/get-nonce@1.0.1/node_modules/get-nonce/dist/es2015/index.js +5 -3
- package/dist/node_modules/.pnpm/input-otp@1.4.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/input-otp/dist/index.js +152 -145
- package/dist/node_modules/.pnpm/react-international-phone@4.4.0_react@18.3.1/node_modules/react-international-phone/dist/index.js +291 -271
- package/dist/node_modules/.pnpm/react-remove-scroll-bar@2.3.8_@types_react@18.3.18_react@18.3.1/node_modules/react-remove-scroll-bar/dist/es2015/component.js +41 -65
- package/dist/node_modules/.pnpm/react-remove-scroll-bar@2.3.8_@types_react@18.3.18_react@18.3.1/node_modules/react-remove-scroll-bar/dist/es2015/constants.js +8 -5
- package/dist/node_modules/.pnpm/react-remove-scroll-bar@2.3.8_@types_react@18.3.18_react@18.3.1/node_modules/react-remove-scroll-bar/dist/es2015/utils.js +28 -16
- package/dist/node_modules/.pnpm/react-remove-scroll@2.6.2_@types_react@18.3.18_react@18.3.1/node_modules/react-remove-scroll/dist/es2015/Combination.js +8 -8
- package/dist/node_modules/.pnpm/react-remove-scroll@2.6.2_@types_react@18.3.18_react@18.3.1/node_modules/react-remove-scroll/dist/es2015/SideEffect.js +157 -95
- package/dist/node_modules/.pnpm/react-remove-scroll@2.6.2_@types_react@18.3.18_react@18.3.1/node_modules/react-remove-scroll/dist/es2015/UI.js +31 -24
- package/dist/node_modules/.pnpm/react-remove-scroll@2.6.2_@types_react@18.3.18_react@18.3.1/node_modules/react-remove-scroll/dist/es2015/aggresiveCapture.js +12 -9
- package/dist/node_modules/.pnpm/react-remove-scroll@2.6.2_@types_react@18.3.18_react@18.3.1/node_modules/react-remove-scroll/dist/es2015/handleScroll.js +86 -48
- package/dist/node_modules/.pnpm/react-remove-scroll@2.6.2_@types_react@18.3.18_react@18.3.1/node_modules/react-remove-scroll/dist/es2015/medium.js +3 -3
- package/dist/node_modules/.pnpm/react-remove-scroll@2.6.2_@types_react@18.3.18_react@18.3.1/node_modules/react-remove-scroll/dist/es2015/sidecar.js +5 -5
- package/dist/node_modules/.pnpm/react-style-singleton@2.2.3_@types_react@18.3.18_react@18.3.1/node_modules/react-style-singleton/dist/es2015/component.js +9 -7
- package/dist/node_modules/.pnpm/react-style-singleton@2.2.3_@types_react@18.3.18_react@18.3.1/node_modules/react-style-singleton/dist/es2015/hook.js +11 -10
- package/dist/node_modules/.pnpm/react-style-singleton@2.2.3_@types_react@18.3.18_react@18.3.1/node_modules/react-style-singleton/dist/es2015/singleton.js +35 -17
- package/dist/node_modules/.pnpm/tailwind-merge@2.6.0/node_modules/tailwind-merge/dist/bundle-mjs.js +625 -424
- package/dist/node_modules/.pnpm/tailwindcss@3.4.17/node_modules/tailwindcss/lib/public/create-plugin.js +21 -17
- package/dist/node_modules/.pnpm/tailwindcss@3.4.17/node_modules/tailwindcss/lib/util/createPlugin.js +28 -21
- package/dist/node_modules/.pnpm/tailwindcss@3.4.17/node_modules/tailwindcss/plugin.js +10 -8
- package/dist/node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/tslib.es6.js +33 -21
- package/dist/node_modules/.pnpm/use-callback-ref@1.3.3_@types_react@18.3.18_react@18.3.1/node_modules/use-callback-ref/dist/es2015/assignRef.js +8 -3
- package/dist/node_modules/.pnpm/use-callback-ref@1.3.3_@types_react@18.3.18_react@18.3.1/node_modules/use-callback-ref/dist/es2015/useMergeRef.js +28 -19
- package/dist/node_modules/.pnpm/use-callback-ref@1.3.3_@types_react@18.3.18_react@18.3.1/node_modules/use-callback-ref/dist/es2015/useRef.js +15 -11
- package/dist/node_modules/.pnpm/use-sidecar@1.1.3_@types_react@18.3.18_react@18.3.1/node_modules/use-sidecar/dist/es2015/exports.js +15 -12
- package/dist/node_modules/.pnpm/use-sidecar@1.1.3_@types_react@18.3.18_react@18.3.1/node_modules/use-sidecar/dist/es2015/medium.js +64 -43
- package/dist/node_modules/.pnpm/vaul@1.1.2_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18.3.18_react-dom@18.3._7iqkcrcg5qjc3n2ixm6rnrnx3e/node_modules/vaul/dist/index.js +1205 -764
- package/dist/tailwind/index.d.ts +36 -0
- package/dist/{tailwind/index.js → tailwind.js} +119 -20
- package/package.json +88 -84
- package/dist/_virtual/dynamic-import-helper.js +0 -16
- package/dist/components/AlertDialog/index.js +0 -12
- package/dist/components/AlertDialog/types.js +0 -1
- package/dist/components/BottomBar/index.js +0 -4
- package/dist/components/BulletList/index.js +0 -4
- package/dist/components/BulletListItem/BulletListItem.d.ts +0 -7
- package/dist/components/BulletListItem/BulletListItem.js +0 -23
- package/dist/components/BulletListItem/index.d.ts +0 -1
- package/dist/components/BulletListItem/index.js +0 -4
- package/dist/components/BulletPoint/BulletPoint.d.ts +0 -6
- package/dist/components/BulletPoint/BulletPoint.js +0 -22
- package/dist/components/BulletPoint/index.d.ts +0 -1
- package/dist/components/BulletPoint/index.js +0 -1
- package/dist/components/Button/index.js +0 -4
- package/dist/components/Checkbox/index.js +0 -4
- package/dist/components/Chip/index.js +0 -4
- package/dist/components/CircularIcon/index.js +0 -4
- package/dist/components/ClearButton/index.js +0 -4
- package/dist/components/ColorPicker/index.js +0 -5
- package/dist/components/CountryDrawer/index.js +0 -4
- package/dist/components/Drawer/index.js +0 -9
- package/dist/components/Drawer/types.js +0 -1
- package/dist/components/Flag/LazyFlag.d.ts +0 -13
- package/dist/components/Flag/LazyFlag.js +0 -25
- package/dist/components/Flag/flag-components/ad.d.ts +0 -3
- package/dist/components/Flag/flag-components/ad.js +0 -56
- package/dist/components/Flag/flag-components/ae.d.ts +0 -3
- package/dist/components/Flag/flag-components/ae.js +0 -48
- package/dist/components/Flag/flag-components/af.d.ts +0 -3
- package/dist/components/Flag/flag-components/af.js +0 -55
- package/dist/components/Flag/flag-components/ag.d.ts +0 -3
- package/dist/components/Flag/flag-components/ag.js +0 -62
- package/dist/components/Flag/flag-components/ai.d.ts +0 -3
- package/dist/components/Flag/flag-components/ai.js +0 -90
- package/dist/components/Flag/flag-components/al.d.ts +0 -3
- package/dist/components/Flag/flag-components/al.js +0 -34
- package/dist/components/Flag/flag-components/am.d.ts +0 -3
- package/dist/components/Flag/flag-components/am.js +0 -41
- package/dist/components/Flag/flag-components/ao.d.ts +0 -3
- package/dist/components/Flag/flag-components/ao.js +0 -55
- package/dist/components/Flag/flag-components/ar.d.ts +0 -3
- package/dist/components/Flag/flag-components/ar.js +0 -48
- package/dist/components/Flag/flag-components/as.d.ts +0 -3
- package/dist/components/Flag/flag-components/as.js +0 -62
- package/dist/components/Flag/flag-components/at.d.ts +0 -3
- package/dist/components/Flag/flag-components/at.js +0 -41
- package/dist/components/Flag/flag-components/au.d.ts +0 -3
- package/dist/components/Flag/flag-components/au.js +0 -98
- package/dist/components/Flag/flag-components/aw.d.ts +0 -3
- package/dist/components/Flag/flag-components/aw.js +0 -62
- package/dist/components/Flag/flag-components/ax.d.ts +0 -3
- package/dist/components/Flag/flag-components/ax.js +0 -62
- package/dist/components/Flag/flag-components/az.d.ts +0 -3
- package/dist/components/Flag/flag-components/az.js +0 -55
- package/dist/components/Flag/flag-components/ba.d.ts +0 -3
- package/dist/components/Flag/flag-components/ba.js +0 -48
- package/dist/components/Flag/flag-components/bb.d.ts +0 -3
- package/dist/components/Flag/flag-components/bb.js +0 -48
- package/dist/components/Flag/flag-components/bd.d.ts +0 -3
- package/dist/components/Flag/flag-components/bd.js +0 -34
- package/dist/components/Flag/flag-components/be.d.ts +0 -3
- package/dist/components/Flag/flag-components/be.js +0 -41
- package/dist/components/Flag/flag-components/bf.d.ts +0 -3
- package/dist/components/Flag/flag-components/bf.js +0 -49
- package/dist/components/Flag/flag-components/bg.d.ts +0 -3
- package/dist/components/Flag/flag-components/bg.js +0 -41
- package/dist/components/Flag/flag-components/bh.d.ts +0 -3
- package/dist/components/Flag/flag-components/bh.js +0 -34
- package/dist/components/Flag/flag-components/bi.d.ts +0 -3
- package/dist/components/Flag/flag-components/bi.js +0 -83
- package/dist/components/Flag/flag-components/bj.d.ts +0 -3
- package/dist/components/Flag/flag-components/bj.js +0 -41
- package/dist/components/Flag/flag-components/bl.d.ts +0 -3
- package/dist/components/Flag/flag-components/bl.js +0 -71
- package/dist/components/Flag/flag-components/bm.d.ts +0 -3
- package/dist/components/Flag/flag-components/bm.js +0 -85
- package/dist/components/Flag/flag-components/bn.d.ts +0 -3
- package/dist/components/Flag/flag-components/bn.js +0 -66
- package/dist/components/Flag/flag-components/bo.d.ts +0 -3
- package/dist/components/Flag/flag-components/bo.js +0 -41
- package/dist/components/Flag/flag-components/bq.d.ts +0 -3
- package/dist/components/Flag/flag-components/bq.js +0 -55
- package/dist/components/Flag/flag-components/br.d.ts +0 -3
- package/dist/components/Flag/flag-components/br.js +0 -55
- package/dist/components/Flag/flag-components/bs.d.ts +0 -3
- package/dist/components/Flag/flag-components/bs.js +0 -48
- package/dist/components/Flag/flag-components/bt.d.ts +0 -3
- package/dist/components/Flag/flag-components/bt.js +0 -48
- package/dist/components/Flag/flag-components/bw.d.ts +0 -3
- package/dist/components/Flag/flag-components/bw.js +0 -48
- package/dist/components/Flag/flag-components/by.d.ts +0 -3
- package/dist/components/Flag/flag-components/by.js +0 -83
- package/dist/components/Flag/flag-components/bz.d.ts +0 -3
- package/dist/components/Flag/flag-components/bz.js +0 -70
- package/dist/components/Flag/flag-components/ca.d.ts +0 -3
- package/dist/components/Flag/flag-components/ca.js +0 -48
- package/dist/components/Flag/flag-components/cc.d.ts +0 -3
- package/dist/components/Flag/flag-components/cc.js +0 -90
- package/dist/components/Flag/flag-components/cd.d.ts +0 -3
- package/dist/components/Flag/flag-components/cd.js +0 -55
- package/dist/components/Flag/flag-components/cf.d.ts +0 -3
- package/dist/components/Flag/flag-components/cf.js +0 -85
- package/dist/components/Flag/flag-components/cg.d.ts +0 -3
- package/dist/components/Flag/flag-components/cg.js +0 -41
- package/dist/components/Flag/flag-components/ch.d.ts +0 -3
- package/dist/components/Flag/flag-components/ch.js +0 -34
- package/dist/components/Flag/flag-components/ci.d.ts +0 -3
- package/dist/components/Flag/flag-components/ci.js +0 -41
- package/dist/components/Flag/flag-components/ck.d.ts +0 -3
- package/dist/components/Flag/flag-components/ck.js +0 -111
- package/dist/components/Flag/flag-components/cl.d.ts +0 -3
- package/dist/components/Flag/flag-components/cl.js +0 -48
- package/dist/components/Flag/flag-components/cm.d.ts +0 -3
- package/dist/components/Flag/flag-components/cm.js +0 -48
- package/dist/components/Flag/flag-components/cn.d.ts +0 -3
- package/dist/components/Flag/flag-components/cn.js +0 -62
- package/dist/components/Flag/flag-components/co.d.ts +0 -3
- package/dist/components/Flag/flag-components/co.js +0 -41
- package/dist/components/Flag/flag-components/cr.d.ts +0 -3
- package/dist/components/Flag/flag-components/cr.js +0 -48
- package/dist/components/Flag/flag-components/cu.d.ts +0 -3
- package/dist/components/Flag/flag-components/cu.js +0 -63
- package/dist/components/Flag/flag-components/cv.d.ts +0 -3
- package/dist/components/Flag/flag-components/cv.js +0 -118
- package/dist/components/Flag/flag-components/cw.d.ts +0 -3
- package/dist/components/Flag/flag-components/cw.js +0 -55
- package/dist/components/Flag/flag-components/cy.d.ts +0 -3
- package/dist/components/Flag/flag-components/cy.js +0 -41
- package/dist/components/Flag/flag-components/cz.d.ts +0 -3
- package/dist/components/Flag/flag-components/cz.js +0 -41
- package/dist/components/Flag/flag-components/de.d.ts +0 -3
- package/dist/components/Flag/flag-components/de.js +0 -41
- package/dist/components/Flag/flag-components/dj.d.ts +0 -3
- package/dist/components/Flag/flag-components/dj.js +0 -48
- package/dist/components/Flag/flag-components/dk.d.ts +0 -3
- package/dist/components/Flag/flag-components/dk.js +0 -55
- package/dist/components/Flag/flag-components/dm.d.ts +0 -3
- package/dist/components/Flag/flag-components/dm.js +0 -195
- package/dist/components/Flag/flag-components/do.d.ts +0 -3
- package/dist/components/Flag/flag-components/do.js +0 -76
- package/dist/components/Flag/flag-components/dz.d.ts +0 -3
- package/dist/components/Flag/flag-components/dz.js +0 -48
- package/dist/components/Flag/flag-components/ec.d.ts +0 -3
- package/dist/components/Flag/flag-components/ec.js +0 -62
- package/dist/components/Flag/flag-components/ee.d.ts +0 -3
- package/dist/components/Flag/flag-components/ee.js +0 -41
- package/dist/components/Flag/flag-components/eg.d.ts +0 -3
- package/dist/components/Flag/flag-components/eg.js +0 -48
- package/dist/components/Flag/flag-components/er.d.ts +0 -3
- package/dist/components/Flag/flag-components/er.js +0 -48
- package/dist/components/Flag/flag-components/es.d.ts +0 -3
- package/dist/components/Flag/flag-components/es.js +0 -41
- package/dist/components/Flag/flag-components/et.d.ts +0 -3
- package/dist/components/Flag/flag-components/et.js +0 -62
- package/dist/components/Flag/flag-components/eu.d.ts +0 -3
- package/dist/components/Flag/flag-components/eu.js +0 -83
- package/dist/components/Flag/flag-components/fi.d.ts +0 -3
- package/dist/components/Flag/flag-components/fi.js +0 -34
- package/dist/components/Flag/flag-components/fj.d.ts +0 -3
- package/dist/components/Flag/flag-components/fj.js +0 -77
- package/dist/components/Flag/flag-components/fk.d.ts +0 -3
- package/dist/components/Flag/flag-components/fk.js +0 -83
- package/dist/components/Flag/flag-components/fm.d.ts +0 -3
- package/dist/components/Flag/flag-components/fm.js +0 -55
- package/dist/components/Flag/flag-components/fo.d.ts +0 -3
- package/dist/components/Flag/flag-components/fo.js +0 -41
- package/dist/components/Flag/flag-components/fr.d.ts +0 -3
- package/dist/components/Flag/flag-components/fr.js +0 -41
- package/dist/components/Flag/flag-components/ga.d.ts +0 -3
- package/dist/components/Flag/flag-components/ga.js +0 -41
- package/dist/components/Flag/flag-components/gb.d.ts +0 -3
- package/dist/components/Flag/flag-components/gb.js +0 -118
- package/dist/components/Flag/flag-components/gd.d.ts +0 -3
- package/dist/components/Flag/flag-components/gd.js +0 -140
- package/dist/components/Flag/flag-components/ge.d.ts +0 -3
- package/dist/components/Flag/flag-components/ge.js +0 -62
- package/dist/components/Flag/flag-components/gg.d.ts +0 -3
- package/dist/components/Flag/flag-components/gg.js +0 -41
- package/dist/components/Flag/flag-components/gh.d.ts +0 -3
- package/dist/components/Flag/flag-components/gh.js +0 -48
- package/dist/components/Flag/flag-components/gi.d.ts +0 -3
- package/dist/components/Flag/flag-components/gi.js +0 -48
- package/dist/components/Flag/flag-components/gl.d.ts +0 -3
- package/dist/components/Flag/flag-components/gl.js +0 -48
- package/dist/components/Flag/flag-components/gm.d.ts +0 -3
- package/dist/components/Flag/flag-components/gm.js +0 -48
- package/dist/components/Flag/flag-components/gn.d.ts +0 -3
- package/dist/components/Flag/flag-components/gn.js +0 -41
- package/dist/components/Flag/flag-components/gp.d.ts +0 -3
- package/dist/components/Flag/flag-components/gp.js +0 -41
- package/dist/components/Flag/flag-components/gq.d.ts +0 -3
- package/dist/components/Flag/flag-components/gq.js +0 -63
- package/dist/components/Flag/flag-components/gr.d.ts +0 -3
- package/dist/components/Flag/flag-components/gr.js +0 -62
- package/dist/components/Flag/flag-components/gt.d.ts +0 -3
- package/dist/components/Flag/flag-components/gt.js +0 -55
- package/dist/components/Flag/flag-components/gu.d.ts +0 -3
- package/dist/components/Flag/flag-components/gu.js +0 -71
- package/dist/components/Flag/flag-components/gw.d.ts +0 -3
- package/dist/components/Flag/flag-components/gw.js +0 -55
- package/dist/components/Flag/flag-components/gy.d.ts +0 -3
- package/dist/components/Flag/flag-components/gy.js +0 -62
- package/dist/components/Flag/flag-components/hk.d.ts +0 -3
- package/dist/components/Flag/flag-components/hk.js +0 -62
- package/dist/components/Flag/flag-components/hn.d.ts +0 -3
- package/dist/components/Flag/flag-components/hn.js +0 -76
- package/dist/components/Flag/flag-components/hr.d.ts +0 -3
- package/dist/components/Flag/flag-components/hr.js +0 -108
- package/dist/components/Flag/flag-components/ht.d.ts +0 -3
- package/dist/components/Flag/flag-components/ht.js +0 -64
- package/dist/components/Flag/flag-components/hu.d.ts +0 -3
- package/dist/components/Flag/flag-components/hu.js +0 -41
- package/dist/components/Flag/flag-components/id.d.ts +0 -3
- package/dist/components/Flag/flag-components/id.js +0 -34
- package/dist/components/Flag/flag-components/ie.d.ts +0 -3
- package/dist/components/Flag/flag-components/ie.js +0 -41
- package/dist/components/Flag/flag-components/il.d.ts +0 -3
- package/dist/components/Flag/flag-components/il.js +0 -48
- package/dist/components/Flag/flag-components/im.d.ts +0 -3
- package/dist/components/Flag/flag-components/im.js +0 -34
- package/dist/components/Flag/flag-components/in.d.ts +0 -3
- package/dist/components/Flag/flag-components/in.js +0 -62
- package/dist/components/Flag/flag-components/index.d.ts +0 -232
- package/dist/components/Flag/flag-components/index.js +0 -466
- package/dist/components/Flag/flag-components/io.d.ts +0 -3
- package/dist/components/Flag/flag-components/io.js +0 -136
- package/dist/components/Flag/flag-components/iq.d.ts +0 -3
- package/dist/components/Flag/flag-components/iq.js +0 -62
- package/dist/components/Flag/flag-components/ir.d.ts +0 -3
- package/dist/components/Flag/flag-components/ir.js +0 -48
- package/dist/components/Flag/flag-components/is.d.ts +0 -3
- package/dist/components/Flag/flag-components/is.js +0 -62
- package/dist/components/Flag/flag-components/it.d.ts +0 -3
- package/dist/components/Flag/flag-components/it.js +0 -41
- package/dist/components/Flag/flag-components/je.d.ts +0 -3
- package/dist/components/Flag/flag-components/je.js +0 -48
- package/dist/components/Flag/flag-components/jm.d.ts +0 -3
- package/dist/components/Flag/flag-components/jm.js +0 -55
- package/dist/components/Flag/flag-components/jo.d.ts +0 -3
- package/dist/components/Flag/flag-components/jo.js +0 -55
- package/dist/components/Flag/flag-components/jp.d.ts +0 -3
- package/dist/components/Flag/flag-components/jp.js +0 -34
- package/dist/components/Flag/flag-components/ke.d.ts +0 -3
- package/dist/components/Flag/flag-components/ke.js +0 -90
- package/dist/components/Flag/flag-components/kg.d.ts +0 -3
- package/dist/components/Flag/flag-components/kg.js +0 -69
- package/dist/components/Flag/flag-components/kh.d.ts +0 -3
- package/dist/components/Flag/flag-components/kh.js +0 -48
- package/dist/components/Flag/flag-components/ki.d.ts +0 -3
- package/dist/components/Flag/flag-components/ki.js +0 -76
- package/dist/components/Flag/flag-components/km.d.ts +0 -3
- package/dist/components/Flag/flag-components/km.js +0 -90
- package/dist/components/Flag/flag-components/kp.d.ts +0 -3
- package/dist/components/Flag/flag-components/kp.js +0 -62
- package/dist/components/Flag/flag-components/kr.d.ts +0 -3
- package/dist/components/Flag/flag-components/kr.js +0 -167
- package/dist/components/Flag/flag-components/kw.d.ts +0 -3
- package/dist/components/Flag/flag-components/kw.js +0 -48
- package/dist/components/Flag/flag-components/ky.d.ts +0 -3
- package/dist/components/Flag/flag-components/ky.js +0 -91
- package/dist/components/Flag/flag-components/kz.d.ts +0 -3
- package/dist/components/Flag/flag-components/kz.js +0 -48
- package/dist/components/Flag/flag-components/la.d.ts +0 -3
- package/dist/components/Flag/flag-components/la.js +0 -48
- package/dist/components/Flag/flag-components/lb.d.ts +0 -3
- package/dist/components/Flag/flag-components/lb.js +0 -48
- package/dist/components/Flag/flag-components/lc.d.ts +0 -3
- package/dist/components/Flag/flag-components/lc.js +0 -30
- package/dist/components/Flag/flag-components/li.d.ts +0 -3
- package/dist/components/Flag/flag-components/li.js +0 -41
- package/dist/components/Flag/flag-components/lk.d.ts +0 -3
- package/dist/components/Flag/flag-components/lk.js +0 -50
- package/dist/components/Flag/flag-components/lr.d.ts +0 -3
- package/dist/components/Flag/flag-components/lr.js +0 -118
- package/dist/components/Flag/flag-components/ls.d.ts +0 -3
- package/dist/components/Flag/flag-components/ls.js +0 -48
- package/dist/components/Flag/flag-components/lt.d.ts +0 -3
- package/dist/components/Flag/flag-components/lt.js +0 -41
- package/dist/components/Flag/flag-components/lu.d.ts +0 -3
- package/dist/components/Flag/flag-components/lu.js +0 -41
- package/dist/components/Flag/flag-components/lv.d.ts +0 -3
- package/dist/components/Flag/flag-components/lv.js +0 -41
- package/dist/components/Flag/flag-components/ly.d.ts +0 -3
- package/dist/components/Flag/flag-components/ly.js +0 -55
- package/dist/components/Flag/flag-components/ma.d.ts +0 -3
- package/dist/components/Flag/flag-components/ma.js +0 -34
- package/dist/components/Flag/flag-components/mc.d.ts +0 -3
- package/dist/components/Flag/flag-components/mc.js +0 -34
- package/dist/components/Flag/flag-components/md.d.ts +0 -3
- package/dist/components/Flag/flag-components/md.js +0 -56
- package/dist/components/Flag/flag-components/me.d.ts +0 -3
- package/dist/components/Flag/flag-components/me.js +0 -56
- package/dist/components/Flag/flag-components/mg.d.ts +0 -3
- package/dist/components/Flag/flag-components/mg.js +0 -41
- package/dist/components/Flag/flag-components/mh.d.ts +0 -3
- package/dist/components/Flag/flag-components/mh.js +0 -48
- package/dist/components/Flag/flag-components/mk.d.ts +0 -3
- package/dist/components/Flag/flag-components/mk.js +0 -97
- package/dist/components/Flag/flag-components/ml.d.ts +0 -3
- package/dist/components/Flag/flag-components/ml.js +0 -41
- package/dist/components/Flag/flag-components/mm.d.ts +0 -3
- package/dist/components/Flag/flag-components/mm.js +0 -48
- package/dist/components/Flag/flag-components/mn.d.ts +0 -3
- package/dist/components/Flag/flag-components/mn.js +0 -66
- package/dist/components/Flag/flag-components/mo.d.ts +0 -3
- package/dist/components/Flag/flag-components/mo.js +0 -83
- package/dist/components/Flag/flag-components/mp.d.ts +0 -3
- package/dist/components/Flag/flag-components/mp.js +0 -55
- package/dist/components/Flag/flag-components/mq.d.ts +0 -3
- package/dist/components/Flag/flag-components/mq.js +0 -83
- package/dist/components/Flag/flag-components/mr.d.ts +0 -3
- package/dist/components/Flag/flag-components/mr.js +0 -41
- package/dist/components/Flag/flag-components/ms.d.ts +0 -3
- package/dist/components/Flag/flag-components/ms.js +0 -76
- package/dist/components/Flag/flag-components/mt.d.ts +0 -3
- package/dist/components/Flag/flag-components/mt.js +0 -41
- package/dist/components/Flag/flag-components/mu.d.ts +0 -3
- package/dist/components/Flag/flag-components/mu.js +0 -48
- package/dist/components/Flag/flag-components/mv.d.ts +0 -3
- package/dist/components/Flag/flag-components/mv.js +0 -35
- package/dist/components/Flag/flag-components/mw.d.ts +0 -3
- package/dist/components/Flag/flag-components/mw.js +0 -48
- package/dist/components/Flag/flag-components/mx.d.ts +0 -3
- package/dist/components/Flag/flag-components/mx.js +0 -55
- package/dist/components/Flag/flag-components/my.d.ts +0 -3
- package/dist/components/Flag/flag-components/my.js +0 -76
- package/dist/components/Flag/flag-components/mz.d.ts +0 -3
- package/dist/components/Flag/flag-components/mz.js +0 -70
- package/dist/components/Flag/flag-components/na.d.ts +0 -3
- package/dist/components/Flag/flag-components/na.js +0 -55
- package/dist/components/Flag/flag-components/ne.d.ts +0 -3
- package/dist/components/Flag/flag-components/ne.js +0 -48
- package/dist/components/Flag/flag-components/nf.d.ts +0 -3
- package/dist/components/Flag/flag-components/nf.js +0 -48
- package/dist/components/Flag/flag-components/ng.d.ts +0 -3
- package/dist/components/Flag/flag-components/ng.js +0 -41
- package/dist/components/Flag/flag-components/ni.d.ts +0 -3
- package/dist/components/Flag/flag-components/ni.js +0 -63
- package/dist/components/Flag/flag-components/nl.d.ts +0 -3
- package/dist/components/Flag/flag-components/nl.js +0 -41
- package/dist/components/Flag/flag-components/no.d.ts +0 -3
- package/dist/components/Flag/flag-components/no.js +0 -62
- package/dist/components/Flag/flag-components/np.d.ts +0 -3
- package/dist/components/Flag/flag-components/np.js +0 -63
- package/dist/components/Flag/flag-components/nr.d.ts +0 -3
- package/dist/components/Flag/flag-components/nr.js +0 -55
- package/dist/components/Flag/flag-components/nu.d.ts +0 -3
- package/dist/components/Flag/flag-components/nu.js +0 -91
- package/dist/components/Flag/flag-components/nz.d.ts +0 -3
- package/dist/components/Flag/flag-components/nz.js +0 -83
- package/dist/components/Flag/flag-components/om.d.ts +0 -3
- package/dist/components/Flag/flag-components/om.js +0 -62
- package/dist/components/Flag/flag-components/pa.d.ts +0 -3
- package/dist/components/Flag/flag-components/pa.js +0 -55
- package/dist/components/Flag/flag-components/pe.d.ts +0 -3
- package/dist/components/Flag/flag-components/pe.js +0 -41
- package/dist/components/Flag/flag-components/pf.d.ts +0 -3
- package/dist/components/Flag/flag-components/pf.js +0 -58
- package/dist/components/Flag/flag-components/pg.d.ts +0 -3
- package/dist/components/Flag/flag-components/pg.js +0 -76
- package/dist/components/Flag/flag-components/ph.d.ts +0 -3
- package/dist/components/Flag/flag-components/ph.js +0 -69
- package/dist/components/Flag/flag-components/pk.d.ts +0 -3
- package/dist/components/Flag/flag-components/pk.js +0 -55
- package/dist/components/Flag/flag-components/pl.d.ts +0 -3
- package/dist/components/Flag/flag-components/pl.js +0 -34
- package/dist/components/Flag/flag-components/pn.d.ts +0 -3
- package/dist/components/Flag/flag-components/pn.js +0 -83
- package/dist/components/Flag/flag-components/pr.d.ts +0 -3
- package/dist/components/Flag/flag-components/pr.js +0 -62
- package/dist/components/Flag/flag-components/ps.d.ts +0 -3
- package/dist/components/Flag/flag-components/ps.js +0 -48
- package/dist/components/Flag/flag-components/pt.d.ts +0 -3
- package/dist/components/Flag/flag-components/pt.js +0 -55
- package/dist/components/Flag/flag-components/pw.d.ts +0 -3
- package/dist/components/Flag/flag-components/pw.js +0 -34
- package/dist/components/Flag/flag-components/py.d.ts +0 -3
- package/dist/components/Flag/flag-components/py.js +0 -55
- package/dist/components/Flag/flag-components/qa.d.ts +0 -3
- package/dist/components/Flag/flag-components/qa.js +0 -34
- package/dist/components/Flag/flag-components/ro.d.ts +0 -3
- package/dist/components/Flag/flag-components/ro.js +0 -41
- package/dist/components/Flag/flag-components/rs.d.ts +0 -3
- package/dist/components/Flag/flag-components/rs.js +0 -69
- package/dist/components/Flag/flag-components/ru.d.ts +0 -3
- package/dist/components/Flag/flag-components/ru.js +0 -41
- package/dist/components/Flag/flag-components/rw.d.ts +0 -3
- package/dist/components/Flag/flag-components/rw.js +0 -48
- package/dist/components/Flag/flag-components/sa.d.ts +0 -3
- package/dist/components/Flag/flag-components/sa.js +0 -57
- package/dist/components/Flag/flag-components/sb.d.ts +0 -3
- package/dist/components/Flag/flag-components/sb.js +0 -76
- package/dist/components/Flag/flag-components/sc.d.ts +0 -3
- package/dist/components/Flag/flag-components/sc.js +0 -55
- package/dist/components/Flag/flag-components/sd.d.ts +0 -3
- package/dist/components/Flag/flag-components/sd.js +0 -48
- package/dist/components/Flag/flag-components/se.d.ts +0 -3
- package/dist/components/Flag/flag-components/se.js +0 -63
- package/dist/components/Flag/flag-components/sg.d.ts +0 -3
- package/dist/components/Flag/flag-components/sg.js +0 -76
- package/dist/components/Flag/flag-components/si.d.ts +0 -3
- package/dist/components/Flag/flag-components/si.js +0 -48
- package/dist/components/Flag/flag-components/sk.d.ts +0 -3
- package/dist/components/Flag/flag-components/sk.js +0 -69
- package/dist/components/Flag/flag-components/sl.d.ts +0 -3
- package/dist/components/Flag/flag-components/sl.js +0 -41
- package/dist/components/Flag/flag-components/sm.d.ts +0 -3
- package/dist/components/Flag/flag-components/sm.js +0 -69
- package/dist/components/Flag/flag-components/sn.d.ts +0 -3
- package/dist/components/Flag/flag-components/sn.js +0 -48
- package/dist/components/Flag/flag-components/so.d.ts +0 -3
- package/dist/components/Flag/flag-components/so.js +0 -34
- package/dist/components/Flag/flag-components/sr.d.ts +0 -3
- package/dist/components/Flag/flag-components/sr.js +0 -55
- package/dist/components/Flag/flag-components/ss.d.ts +0 -3
- package/dist/components/Flag/flag-components/ss.js +0 -62
- package/dist/components/Flag/flag-components/st.d.ts +0 -3
- package/dist/components/Flag/flag-components/st.js +0 -62
- package/dist/components/Flag/flag-components/sv.d.ts +0 -3
- package/dist/components/Flag/flag-components/sv.js +0 -56
- package/dist/components/Flag/flag-components/sx.d.ts +0 -3
- package/dist/components/Flag/flag-components/sx.js +0 -76
- package/dist/components/Flag/flag-components/sy.d.ts +0 -3
- package/dist/components/Flag/flag-components/sy.js +0 -55
- package/dist/components/Flag/flag-components/sz.d.ts +0 -3
- package/dist/components/Flag/flag-components/sz.js +0 -80
- package/dist/components/Flag/flag-components/tc.d.ts +0 -3
- package/dist/components/Flag/flag-components/tc.js +0 -90
- package/dist/components/Flag/flag-components/td.d.ts +0 -3
- package/dist/components/Flag/flag-components/td.js +0 -41
- package/dist/components/Flag/flag-components/tg.d.ts +0 -3
- package/dist/components/Flag/flag-components/tg.js +0 -62
- package/dist/components/Flag/flag-components/th.d.ts +0 -3
- package/dist/components/Flag/flag-components/th.js +0 -48
- package/dist/components/Flag/flag-components/tj.d.ts +0 -3
- package/dist/components/Flag/flag-components/tj.js +0 -97
- package/dist/components/Flag/flag-components/tk.d.ts +0 -3
- package/dist/components/Flag/flag-components/tk.js +0 -62
- package/dist/components/Flag/flag-components/tl.d.ts +0 -3
- package/dist/components/Flag/flag-components/tl.js +0 -48
- package/dist/components/Flag/flag-components/tm.d.ts +0 -3
- package/dist/components/Flag/flag-components/tm.js +0 -161
- package/dist/components/Flag/flag-components/tn.d.ts +0 -3
- package/dist/components/Flag/flag-components/tn.js +0 -48
- package/dist/components/Flag/flag-components/to.d.ts +0 -3
- package/dist/components/Flag/flag-components/to.js +0 -41
- package/dist/components/Flag/flag-components/tr.d.ts +0 -3
- package/dist/components/Flag/flag-components/tr.js +0 -41
- package/dist/components/Flag/flag-components/tt.d.ts +0 -3
- package/dist/components/Flag/flag-components/tt.js +0 -48
- package/dist/components/Flag/flag-components/tv.d.ts +0 -3
- package/dist/components/Flag/flag-components/tv.js +0 -120
- package/dist/components/Flag/flag-components/tw.d.ts +0 -3
- package/dist/components/Flag/flag-components/tw.js +0 -55
- package/dist/components/Flag/flag-components/tz.d.ts +0 -3
- package/dist/components/Flag/flag-components/tz.js +0 -48
- package/dist/components/Flag/flag-components/ua.d.ts +0 -3
- package/dist/components/Flag/flag-components/ua.js +0 -34
- package/dist/components/Flag/flag-components/ug.d.ts +0 -3
- package/dist/components/Flag/flag-components/ug.js +0 -69
- package/dist/components/Flag/flag-components/us.d.ts +0 -3
- package/dist/components/Flag/flag-components/us.js +0 -62
- package/dist/components/Flag/flag-components/uy.d.ts +0 -3
- package/dist/components/Flag/flag-components/uy.js +0 -69
- package/dist/components/Flag/flag-components/uz.d.ts +0 -3
- package/dist/components/Flag/flag-components/uz.js +0 -146
- package/dist/components/Flag/flag-components/va.d.ts +0 -3
- package/dist/components/Flag/flag-components/va.js +0 -48
- package/dist/components/Flag/flag-components/vc.d.ts +0 -3
- package/dist/components/Flag/flag-components/vc.js +0 -70
- package/dist/components/Flag/flag-components/ve.d.ts +0 -3
- package/dist/components/Flag/flag-components/ve.js +0 -97
- package/dist/components/Flag/flag-components/vg.d.ts +0 -3
- package/dist/components/Flag/flag-components/vg.js +0 -83
- package/dist/components/Flag/flag-components/vn.d.ts +0 -3
- package/dist/components/Flag/flag-components/vn.js +0 -34
- package/dist/components/Flag/flag-components/vu.d.ts +0 -3
- package/dist/components/Flag/flag-components/vu.js +0 -189
- package/dist/components/Flag/flag-components/ws.d.ts +0 -3
- package/dist/components/Flag/flag-components/ws.js +0 -69
- package/dist/components/Flag/flag-components/xk.d.ts +0 -3
- package/dist/components/Flag/flag-components/xk.js +0 -76
- package/dist/components/Flag/flag-components/ye.d.ts +0 -3
- package/dist/components/Flag/flag-components/ye.js +0 -41
- package/dist/components/Flag/flag-components/za.d.ts +0 -3
- package/dist/components/Flag/flag-components/za.js +0 -62
- package/dist/components/Flag/flag-components/zm.d.ts +0 -3
- package/dist/components/Flag/flag-components/zm.js +0 -55
- package/dist/components/Flag/flag-components/zw.d.ts +0 -3
- package/dist/components/Flag/flag-components/zw.js +0 -97
- package/dist/components/Flag/index.js +0 -8
- package/dist/components/Form/index.js +0 -4
- package/dist/components/Icons/Eye.js +0 -40
- package/dist/components/Icons/EyeClosed.js +0 -60
- package/dist/components/Input/index.js +0 -6
- package/dist/components/ListItem/index.js +0 -4
- package/dist/components/Marble/index.js +0 -4
- package/dist/components/NumberPad/index.js +0 -4
- package/dist/components/OTPField/index.js +0 -4
- package/dist/components/PasswordField/PasswordField.js +0 -45
- package/dist/components/PasswordField/index.js +0 -4
- package/dist/components/PasteButton/index.js +0 -4
- package/dist/components/PhoneField/index.js +0 -6
- package/dist/components/Pill/index.js +0 -4
- package/dist/components/Progress/index.js +0 -4
- package/dist/components/RadioGroup/index.js +0 -6
- package/dist/components/SearchField/index.js +0 -4
- package/dist/components/Select/index.js +0 -4
- package/dist/components/Spinner/index.js +0 -4
- package/dist/components/Switch/index.js +0 -4
- package/dist/components/Tabs/index.js +0 -5
- package/dist/components/Tabs/types.js +0 -1
- package/dist/components/TextArea/index.js +0 -4
- package/dist/components/Toast/index.js +0 -12
- package/dist/components/ToggleGroup/index.js +0 -5
- package/dist/components/ToggleGroup/types.js +0 -1
- package/dist/components/Token/icons/types.js +0 -1
- package/dist/components/Token/index.js +0 -4
- package/dist/components/TopBar/index.js +0 -4
- package/dist/components/Typography/index.js +0 -5
- package/dist/components/WalletAddressField/index.js +0 -4
- package/dist/node_modules/.pnpm/countries-list@3.1.1/node_modules/countries-list/mjs/index.js +0 -8
- package/public/fonts/TWKLausanne-350.woff +0 -0
- package/public/fonts/TWKLausanne-350Italic.woff +0 -0
- package/public/fonts/TWKLausanne-500.woff +0 -0
- package/public/fonts/TWKLausanne-500Italic.woff +0 -0
- package/public/fonts/TWKLausanne-600.woff +0 -0
- package/public/fonts/TWKLausanne-600Italic.woff +0 -0
- package/public/globals.css +0 -2297
- package/public/images/marbles/marble1.png +0 -0
- package/public/images/marbles/marble2.png +0 -0
- package/public/images/marbles/marble3.svg +0 -36
package/public/globals.css
DELETED
@@ -1,2297 +0,0 @@
|
|
1
|
-
@font-face {
|
2
|
-
font-family: "TWK Lausanne";
|
3
|
-
|
4
|
-
src: url("../public/fonts/TWKLausanne-350.woff") format("woff");
|
5
|
-
|
6
|
-
font-weight: 350;
|
7
|
-
|
8
|
-
font-style: normal;
|
9
|
-
|
10
|
-
font-display: swap;
|
11
|
-
}
|
12
|
-
|
13
|
-
@font-face {
|
14
|
-
font-family: "TWK Lausanne";
|
15
|
-
|
16
|
-
src: url("../public/fonts/TWKLausanne-350Italic.woff") format("woff");
|
17
|
-
|
18
|
-
font-weight: 350;
|
19
|
-
|
20
|
-
font-style: italic;
|
21
|
-
|
22
|
-
font-display: swap;
|
23
|
-
}
|
24
|
-
|
25
|
-
@font-face {
|
26
|
-
font-family: "TWK Lausanne";
|
27
|
-
|
28
|
-
src: url("../public/fonts/TWKLausanne-500.woff") format("woff");
|
29
|
-
|
30
|
-
font-weight: 500;
|
31
|
-
|
32
|
-
font-style: normal;
|
33
|
-
|
34
|
-
font-display: swap;
|
35
|
-
}
|
36
|
-
|
37
|
-
@font-face {
|
38
|
-
font-family: "TWK Lausanne";
|
39
|
-
|
40
|
-
src: url("../public/fonts/TWKLausanne-500Italic.woff") format("woff");
|
41
|
-
|
42
|
-
font-weight: 500;
|
43
|
-
|
44
|
-
font-style: italic;
|
45
|
-
|
46
|
-
font-display: swap;
|
47
|
-
}
|
48
|
-
|
49
|
-
@font-face {
|
50
|
-
font-family: "TWK Lausanne";
|
51
|
-
|
52
|
-
src: url("../public/fonts/TWKLausanne-600.woff") format("woff");
|
53
|
-
|
54
|
-
font-weight: 600;
|
55
|
-
|
56
|
-
font-style: normal;
|
57
|
-
|
58
|
-
font-display: swap;
|
59
|
-
}
|
60
|
-
|
61
|
-
@font-face {
|
62
|
-
font-family: "TWK Lausanne";
|
63
|
-
|
64
|
-
src: url("../public/fonts/TWKLausanne-600Italic.woff") format("woff");
|
65
|
-
|
66
|
-
font-weight: 600;
|
67
|
-
|
68
|
-
font-style: italic;
|
69
|
-
|
70
|
-
font-display: swap;
|
71
|
-
}
|
72
|
-
|
73
|
-
:root {
|
74
|
-
--font-sans: "TWK Lausanne", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
75
|
-
"Helvetica Neue", Arial, sans-serif;
|
76
|
-
}
|
77
|
-
|
78
|
-
/* Hide pseudo-elements for search inputs */
|
79
|
-
|
80
|
-
input[type="search"]::-webkit-search-cancel-button,
|
81
|
-
input[type="search"]::-webkit-search-decoration,
|
82
|
-
input[type="search"]::-webkit-search-results-button,
|
83
|
-
input[type="search"]::-webkit-search-results-decoration {
|
84
|
-
display: none;
|
85
|
-
}
|
86
|
-
|
87
|
-
/* Hide clear button for all supported input types */
|
88
|
-
|
89
|
-
input::-webkit-clear-button {
|
90
|
-
display: none;
|
91
|
-
}
|
92
|
-
|
93
|
-
/* Hide spin buttons for number inputs */
|
94
|
-
|
95
|
-
input::-webkit-inner-spin-button,
|
96
|
-
input::-webkit-outer-spin-button {
|
97
|
-
display: none;
|
98
|
-
}
|
99
|
-
|
100
|
-
/* Hide calendar picker for date inputs */
|
101
|
-
|
102
|
-
input::-webkit-calendar-picker-indicator {
|
103
|
-
display: none;
|
104
|
-
}
|
105
|
-
|
106
|
-
/* Hide pseudo-elements for datetime inputs */
|
107
|
-
|
108
|
-
input::-webkit-datetime-edit,
|
109
|
-
input::-webkit-datetime-edit-fields-wrapper,
|
110
|
-
input::-webkit-datetime-edit-text,
|
111
|
-
input::-webkit-datetime-edit-year-field,
|
112
|
-
input::-webkit-datetime-edit-month-field,
|
113
|
-
input::-webkit-datetime-edit-day-field,
|
114
|
-
input::-webkit-datetime-edit-hour-field,
|
115
|
-
input::-webkit-datetime-edit-minute-field,
|
116
|
-
input::-webkit-datetime-edit-second-field,
|
117
|
-
input::-webkit-datetime-edit-ampm-field {
|
118
|
-
display: none;
|
119
|
-
}
|
120
|
-
|
121
|
-
*, ::before, ::after {
|
122
|
-
--tw-border-spacing-x: 0;
|
123
|
-
--tw-border-spacing-y: 0;
|
124
|
-
--tw-translate-x: 0;
|
125
|
-
--tw-translate-y: 0;
|
126
|
-
--tw-rotate: 0;
|
127
|
-
--tw-skew-x: 0;
|
128
|
-
--tw-skew-y: 0;
|
129
|
-
--tw-scale-x: 1;
|
130
|
-
--tw-scale-y: 1;
|
131
|
-
--tw-pan-x: ;
|
132
|
-
--tw-pan-y: ;
|
133
|
-
--tw-pinch-zoom: ;
|
134
|
-
--tw-scroll-snap-strictness: proximity;
|
135
|
-
--tw-gradient-from-position: ;
|
136
|
-
--tw-gradient-via-position: ;
|
137
|
-
--tw-gradient-to-position: ;
|
138
|
-
--tw-ordinal: ;
|
139
|
-
--tw-slashed-zero: ;
|
140
|
-
--tw-numeric-figure: ;
|
141
|
-
--tw-numeric-spacing: ;
|
142
|
-
--tw-numeric-fraction: ;
|
143
|
-
--tw-ring-inset: ;
|
144
|
-
--tw-ring-offset-width: 0px;
|
145
|
-
--tw-ring-offset-color: #fff;
|
146
|
-
--tw-ring-color: rgb(59 130 246 / 0.5);
|
147
|
-
--tw-ring-offset-shadow: 0 0 #0000;
|
148
|
-
--tw-ring-shadow: 0 0 #0000;
|
149
|
-
--tw-shadow: 0 0 #0000;
|
150
|
-
--tw-shadow-colored: 0 0 #0000;
|
151
|
-
--tw-blur: ;
|
152
|
-
--tw-brightness: ;
|
153
|
-
--tw-contrast: ;
|
154
|
-
--tw-grayscale: ;
|
155
|
-
--tw-hue-rotate: ;
|
156
|
-
--tw-invert: ;
|
157
|
-
--tw-saturate: ;
|
158
|
-
--tw-sepia: ;
|
159
|
-
--tw-drop-shadow: ;
|
160
|
-
--tw-backdrop-blur: ;
|
161
|
-
--tw-backdrop-brightness: ;
|
162
|
-
--tw-backdrop-contrast: ;
|
163
|
-
--tw-backdrop-grayscale: ;
|
164
|
-
--tw-backdrop-hue-rotate: ;
|
165
|
-
--tw-backdrop-invert: ;
|
166
|
-
--tw-backdrop-opacity: ;
|
167
|
-
--tw-backdrop-saturate: ;
|
168
|
-
--tw-backdrop-sepia: ;
|
169
|
-
--tw-contain-size: ;
|
170
|
-
--tw-contain-layout: ;
|
171
|
-
--tw-contain-paint: ;
|
172
|
-
--tw-contain-style: ;
|
173
|
-
}
|
174
|
-
|
175
|
-
::backdrop {
|
176
|
-
--tw-border-spacing-x: 0;
|
177
|
-
--tw-border-spacing-y: 0;
|
178
|
-
--tw-translate-x: 0;
|
179
|
-
--tw-translate-y: 0;
|
180
|
-
--tw-rotate: 0;
|
181
|
-
--tw-skew-x: 0;
|
182
|
-
--tw-skew-y: 0;
|
183
|
-
--tw-scale-x: 1;
|
184
|
-
--tw-scale-y: 1;
|
185
|
-
--tw-pan-x: ;
|
186
|
-
--tw-pan-y: ;
|
187
|
-
--tw-pinch-zoom: ;
|
188
|
-
--tw-scroll-snap-strictness: proximity;
|
189
|
-
--tw-gradient-from-position: ;
|
190
|
-
--tw-gradient-via-position: ;
|
191
|
-
--tw-gradient-to-position: ;
|
192
|
-
--tw-ordinal: ;
|
193
|
-
--tw-slashed-zero: ;
|
194
|
-
--tw-numeric-figure: ;
|
195
|
-
--tw-numeric-spacing: ;
|
196
|
-
--tw-numeric-fraction: ;
|
197
|
-
--tw-ring-inset: ;
|
198
|
-
--tw-ring-offset-width: 0px;
|
199
|
-
--tw-ring-offset-color: #fff;
|
200
|
-
--tw-ring-color: rgb(59 130 246 / 0.5);
|
201
|
-
--tw-ring-offset-shadow: 0 0 #0000;
|
202
|
-
--tw-ring-shadow: 0 0 #0000;
|
203
|
-
--tw-shadow: 0 0 #0000;
|
204
|
-
--tw-shadow-colored: 0 0 #0000;
|
205
|
-
--tw-blur: ;
|
206
|
-
--tw-brightness: ;
|
207
|
-
--tw-contrast: ;
|
208
|
-
--tw-grayscale: ;
|
209
|
-
--tw-hue-rotate: ;
|
210
|
-
--tw-invert: ;
|
211
|
-
--tw-saturate: ;
|
212
|
-
--tw-sepia: ;
|
213
|
-
--tw-drop-shadow: ;
|
214
|
-
--tw-backdrop-blur: ;
|
215
|
-
--tw-backdrop-brightness: ;
|
216
|
-
--tw-backdrop-contrast: ;
|
217
|
-
--tw-backdrop-grayscale: ;
|
218
|
-
--tw-backdrop-hue-rotate: ;
|
219
|
-
--tw-backdrop-invert: ;
|
220
|
-
--tw-backdrop-opacity: ;
|
221
|
-
--tw-backdrop-saturate: ;
|
222
|
-
--tw-backdrop-sepia: ;
|
223
|
-
--tw-contain-size: ;
|
224
|
-
--tw-contain-layout: ;
|
225
|
-
--tw-contain-paint: ;
|
226
|
-
--tw-contain-style: ;
|
227
|
-
}
|
228
|
-
|
229
|
-
/* ! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com */
|
230
|
-
|
231
|
-
/*
|
232
|
-
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
233
|
-
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
|
234
|
-
*/
|
235
|
-
|
236
|
-
*,
|
237
|
-
::before,
|
238
|
-
::after {
|
239
|
-
box-sizing: border-box;
|
240
|
-
/* 1 */
|
241
|
-
border-width: 0;
|
242
|
-
/* 2 */
|
243
|
-
border-style: solid;
|
244
|
-
/* 2 */
|
245
|
-
border-color: rgb(var(--gray-200) / 1);
|
246
|
-
/* 2 */
|
247
|
-
}
|
248
|
-
|
249
|
-
::before,
|
250
|
-
::after {
|
251
|
-
--tw-content: '';
|
252
|
-
}
|
253
|
-
|
254
|
-
/*
|
255
|
-
1. Use a consistent sensible line-height in all browsers.
|
256
|
-
2. Prevent adjustments of font size after orientation changes in iOS.
|
257
|
-
3. Use a more readable tab size.
|
258
|
-
4. Use the user's configured `sans` font-family by default.
|
259
|
-
5. Use the user's configured `sans` font-feature-settings by default.
|
260
|
-
6. Use the user's configured `sans` font-variation-settings by default.
|
261
|
-
7. Disable tap highlights on iOS
|
262
|
-
*/
|
263
|
-
|
264
|
-
html,
|
265
|
-
:host {
|
266
|
-
line-height: 1.5;
|
267
|
-
/* 1 */
|
268
|
-
-webkit-text-size-adjust: 100%;
|
269
|
-
/* 2 */
|
270
|
-
-moz-tab-size: 4;
|
271
|
-
/* 3 */
|
272
|
-
-o-tab-size: 4;
|
273
|
-
tab-size: 4;
|
274
|
-
/* 3 */
|
275
|
-
font-family: var(--font-sans);
|
276
|
-
/* 4 */
|
277
|
-
font-feature-settings: normal;
|
278
|
-
/* 5 */
|
279
|
-
font-variation-settings: normal;
|
280
|
-
/* 6 */
|
281
|
-
-webkit-tap-highlight-color: transparent;
|
282
|
-
/* 7 */
|
283
|
-
}
|
284
|
-
|
285
|
-
/*
|
286
|
-
1. Remove the margin in all browsers.
|
287
|
-
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
|
288
|
-
*/
|
289
|
-
|
290
|
-
body {
|
291
|
-
margin: 0;
|
292
|
-
/* 1 */
|
293
|
-
line-height: inherit;
|
294
|
-
/* 2 */
|
295
|
-
}
|
296
|
-
|
297
|
-
/*
|
298
|
-
1. Add the correct height in Firefox.
|
299
|
-
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
|
300
|
-
3. Ensure horizontal rules are visible by default.
|
301
|
-
*/
|
302
|
-
|
303
|
-
hr {
|
304
|
-
height: 0;
|
305
|
-
/* 1 */
|
306
|
-
color: inherit;
|
307
|
-
/* 2 */
|
308
|
-
border-top-width: 1px;
|
309
|
-
/* 3 */
|
310
|
-
}
|
311
|
-
|
312
|
-
/*
|
313
|
-
Add the correct text decoration in Chrome, Edge, and Safari.
|
314
|
-
*/
|
315
|
-
|
316
|
-
abbr:where([title]) {
|
317
|
-
-webkit-text-decoration: underline dotted;
|
318
|
-
text-decoration: underline dotted;
|
319
|
-
}
|
320
|
-
|
321
|
-
/*
|
322
|
-
Remove the default font size and weight for headings.
|
323
|
-
*/
|
324
|
-
|
325
|
-
h1,
|
326
|
-
h2,
|
327
|
-
h3,
|
328
|
-
h4,
|
329
|
-
h5,
|
330
|
-
h6 {
|
331
|
-
font-size: inherit;
|
332
|
-
font-weight: inherit;
|
333
|
-
}
|
334
|
-
|
335
|
-
/*
|
336
|
-
Reset links to optimize for opt-in styling instead of opt-out.
|
337
|
-
*/
|
338
|
-
|
339
|
-
a {
|
340
|
-
color: inherit;
|
341
|
-
text-decoration: inherit;
|
342
|
-
}
|
343
|
-
|
344
|
-
/*
|
345
|
-
Add the correct font weight in Edge and Safari.
|
346
|
-
*/
|
347
|
-
|
348
|
-
b,
|
349
|
-
strong {
|
350
|
-
font-weight: bolder;
|
351
|
-
}
|
352
|
-
|
353
|
-
/*
|
354
|
-
1. Use the user's configured `mono` font-family by default.
|
355
|
-
2. Use the user's configured `mono` font-feature-settings by default.
|
356
|
-
3. Use the user's configured `mono` font-variation-settings by default.
|
357
|
-
4. Correct the odd `em` font sizing in all browsers.
|
358
|
-
*/
|
359
|
-
|
360
|
-
code,
|
361
|
-
kbd,
|
362
|
-
samp,
|
363
|
-
pre {
|
364
|
-
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
365
|
-
/* 1 */
|
366
|
-
font-feature-settings: normal;
|
367
|
-
/* 2 */
|
368
|
-
font-variation-settings: normal;
|
369
|
-
/* 3 */
|
370
|
-
font-size: 1em;
|
371
|
-
/* 4 */
|
372
|
-
}
|
373
|
-
|
374
|
-
/*
|
375
|
-
Add the correct font size in all browsers.
|
376
|
-
*/
|
377
|
-
|
378
|
-
small {
|
379
|
-
font-size: 80%;
|
380
|
-
}
|
381
|
-
|
382
|
-
/*
|
383
|
-
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
|
384
|
-
*/
|
385
|
-
|
386
|
-
sub,
|
387
|
-
sup {
|
388
|
-
font-size: 75%;
|
389
|
-
line-height: 0;
|
390
|
-
position: relative;
|
391
|
-
vertical-align: baseline;
|
392
|
-
}
|
393
|
-
|
394
|
-
sub {
|
395
|
-
bottom: -0.25em;
|
396
|
-
}
|
397
|
-
|
398
|
-
sup {
|
399
|
-
top: -0.5em;
|
400
|
-
}
|
401
|
-
|
402
|
-
/*
|
403
|
-
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
|
404
|
-
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
|
405
|
-
3. Remove gaps between table borders by default.
|
406
|
-
*/
|
407
|
-
|
408
|
-
table {
|
409
|
-
text-indent: 0;
|
410
|
-
/* 1 */
|
411
|
-
border-color: inherit;
|
412
|
-
/* 2 */
|
413
|
-
border-collapse: collapse;
|
414
|
-
/* 3 */
|
415
|
-
}
|
416
|
-
|
417
|
-
/*
|
418
|
-
1. Change the font styles in all browsers.
|
419
|
-
2. Remove the margin in Firefox and Safari.
|
420
|
-
3. Remove default padding in all browsers.
|
421
|
-
*/
|
422
|
-
|
423
|
-
button,
|
424
|
-
input,
|
425
|
-
optgroup,
|
426
|
-
select,
|
427
|
-
textarea {
|
428
|
-
font-family: inherit;
|
429
|
-
/* 1 */
|
430
|
-
font-feature-settings: inherit;
|
431
|
-
/* 1 */
|
432
|
-
font-variation-settings: inherit;
|
433
|
-
/* 1 */
|
434
|
-
font-size: 100%;
|
435
|
-
/* 1 */
|
436
|
-
font-weight: inherit;
|
437
|
-
/* 1 */
|
438
|
-
line-height: inherit;
|
439
|
-
/* 1 */
|
440
|
-
letter-spacing: inherit;
|
441
|
-
/* 1 */
|
442
|
-
color: inherit;
|
443
|
-
/* 1 */
|
444
|
-
margin: 0;
|
445
|
-
/* 2 */
|
446
|
-
padding: 0;
|
447
|
-
/* 3 */
|
448
|
-
}
|
449
|
-
|
450
|
-
/*
|
451
|
-
Remove the inheritance of text transform in Edge and Firefox.
|
452
|
-
*/
|
453
|
-
|
454
|
-
button,
|
455
|
-
select {
|
456
|
-
text-transform: none;
|
457
|
-
}
|
458
|
-
|
459
|
-
/*
|
460
|
-
1. Correct the inability to style clickable types in iOS and Safari.
|
461
|
-
2. Remove default button styles.
|
462
|
-
*/
|
463
|
-
|
464
|
-
button,
|
465
|
-
input:where([type='button']),
|
466
|
-
input:where([type='reset']),
|
467
|
-
input:where([type='submit']) {
|
468
|
-
-webkit-appearance: button;
|
469
|
-
/* 1 */
|
470
|
-
background-color: transparent;
|
471
|
-
/* 2 */
|
472
|
-
background-image: none;
|
473
|
-
/* 2 */
|
474
|
-
}
|
475
|
-
|
476
|
-
/*
|
477
|
-
Use the modern Firefox focus style for all focusable elements.
|
478
|
-
*/
|
479
|
-
|
480
|
-
:-moz-focusring {
|
481
|
-
outline: auto;
|
482
|
-
}
|
483
|
-
|
484
|
-
/*
|
485
|
-
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
|
486
|
-
*/
|
487
|
-
|
488
|
-
:-moz-ui-invalid {
|
489
|
-
box-shadow: none;
|
490
|
-
}
|
491
|
-
|
492
|
-
/*
|
493
|
-
Add the correct vertical alignment in Chrome and Firefox.
|
494
|
-
*/
|
495
|
-
|
496
|
-
progress {
|
497
|
-
vertical-align: baseline;
|
498
|
-
}
|
499
|
-
|
500
|
-
/*
|
501
|
-
Correct the cursor style of increment and decrement buttons in Safari.
|
502
|
-
*/
|
503
|
-
|
504
|
-
::-webkit-inner-spin-button,
|
505
|
-
::-webkit-outer-spin-button {
|
506
|
-
height: auto;
|
507
|
-
}
|
508
|
-
|
509
|
-
/*
|
510
|
-
1. Correct the odd appearance in Chrome and Safari.
|
511
|
-
2. Correct the outline style in Safari.
|
512
|
-
*/
|
513
|
-
|
514
|
-
[type='search'] {
|
515
|
-
-webkit-appearance: textfield;
|
516
|
-
/* 1 */
|
517
|
-
outline-offset: -2px;
|
518
|
-
/* 2 */
|
519
|
-
}
|
520
|
-
|
521
|
-
/*
|
522
|
-
Remove the inner padding in Chrome and Safari on macOS.
|
523
|
-
*/
|
524
|
-
|
525
|
-
::-webkit-search-decoration {
|
526
|
-
-webkit-appearance: none;
|
527
|
-
}
|
528
|
-
|
529
|
-
/*
|
530
|
-
1. Correct the inability to style clickable types in iOS and Safari.
|
531
|
-
2. Change font properties to `inherit` in Safari.
|
532
|
-
*/
|
533
|
-
|
534
|
-
::-webkit-file-upload-button {
|
535
|
-
-webkit-appearance: button;
|
536
|
-
/* 1 */
|
537
|
-
font: inherit;
|
538
|
-
/* 2 */
|
539
|
-
}
|
540
|
-
|
541
|
-
/*
|
542
|
-
Add the correct display in Chrome and Safari.
|
543
|
-
*/
|
544
|
-
|
545
|
-
summary {
|
546
|
-
display: list-item;
|
547
|
-
}
|
548
|
-
|
549
|
-
/*
|
550
|
-
Removes the default spacing and border for appropriate elements.
|
551
|
-
*/
|
552
|
-
|
553
|
-
blockquote,
|
554
|
-
dl,
|
555
|
-
dd,
|
556
|
-
h1,
|
557
|
-
h2,
|
558
|
-
h3,
|
559
|
-
h4,
|
560
|
-
h5,
|
561
|
-
h6,
|
562
|
-
hr,
|
563
|
-
figure,
|
564
|
-
p,
|
565
|
-
pre {
|
566
|
-
margin: 0;
|
567
|
-
}
|
568
|
-
|
569
|
-
fieldset {
|
570
|
-
margin: 0;
|
571
|
-
padding: 0;
|
572
|
-
}
|
573
|
-
|
574
|
-
legend {
|
575
|
-
padding: 0;
|
576
|
-
}
|
577
|
-
|
578
|
-
ol,
|
579
|
-
ul,
|
580
|
-
menu {
|
581
|
-
list-style: none;
|
582
|
-
margin: 0;
|
583
|
-
padding: 0;
|
584
|
-
}
|
585
|
-
|
586
|
-
/*
|
587
|
-
Reset default styling for dialogs.
|
588
|
-
*/
|
589
|
-
|
590
|
-
dialog {
|
591
|
-
padding: 0;
|
592
|
-
}
|
593
|
-
|
594
|
-
/*
|
595
|
-
Prevent resizing textareas horizontally by default.
|
596
|
-
*/
|
597
|
-
|
598
|
-
textarea {
|
599
|
-
resize: vertical;
|
600
|
-
}
|
601
|
-
|
602
|
-
/*
|
603
|
-
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
|
604
|
-
2. Set the default placeholder color to the user's configured gray 400 color.
|
605
|
-
*/
|
606
|
-
|
607
|
-
input::-moz-placeholder, textarea::-moz-placeholder {
|
608
|
-
opacity: 1;
|
609
|
-
/* 1 */
|
610
|
-
color: rgb(var(--gray-400) / 1);
|
611
|
-
/* 2 */
|
612
|
-
}
|
613
|
-
|
614
|
-
input::placeholder,
|
615
|
-
textarea::placeholder {
|
616
|
-
opacity: 1;
|
617
|
-
/* 1 */
|
618
|
-
color: rgb(var(--gray-400) / 1);
|
619
|
-
/* 2 */
|
620
|
-
}
|
621
|
-
|
622
|
-
/*
|
623
|
-
Set the default cursor for buttons.
|
624
|
-
*/
|
625
|
-
|
626
|
-
button,
|
627
|
-
[role="button"] {
|
628
|
-
cursor: pointer;
|
629
|
-
}
|
630
|
-
|
631
|
-
/*
|
632
|
-
Make sure disabled buttons don't get the pointer cursor.
|
633
|
-
*/
|
634
|
-
|
635
|
-
:disabled {
|
636
|
-
cursor: default;
|
637
|
-
}
|
638
|
-
|
639
|
-
/*
|
640
|
-
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
|
641
|
-
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
|
642
|
-
This can trigger a poorly considered lint error in some tools but is included by design.
|
643
|
-
*/
|
644
|
-
|
645
|
-
img,
|
646
|
-
svg,
|
647
|
-
video,
|
648
|
-
canvas,
|
649
|
-
audio,
|
650
|
-
iframe,
|
651
|
-
embed,
|
652
|
-
object {
|
653
|
-
display: block;
|
654
|
-
/* 1 */
|
655
|
-
vertical-align: middle;
|
656
|
-
/* 2 */
|
657
|
-
}
|
658
|
-
|
659
|
-
/*
|
660
|
-
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
|
661
|
-
*/
|
662
|
-
|
663
|
-
img,
|
664
|
-
video {
|
665
|
-
max-width: 100%;
|
666
|
-
height: auto;
|
667
|
-
}
|
668
|
-
|
669
|
-
/* Make elements with the HTML hidden attribute stay hidden by default */
|
670
|
-
|
671
|
-
[hidden]:where(:not([hidden="until-found"])) {
|
672
|
-
display: none;
|
673
|
-
}
|
674
|
-
|
675
|
-
:root {
|
676
|
-
--font-sans: TWK Lausanne;
|
677
|
-
--gray-0: 255 255 255;
|
678
|
-
--gray-50: 249 250 251;
|
679
|
-
--gray-100: 243 244 245;
|
680
|
-
--gray-200: 235 236 239;
|
681
|
-
--gray-300: 214 217 221;
|
682
|
-
--gray-350: 177 184 194;
|
683
|
-
--gray-400: 155 163 174;
|
684
|
-
--gray-500: 113 118 128;
|
685
|
-
--gray-700: 60 66 75;
|
686
|
-
--gray-900: 24 24 24;
|
687
|
-
--success-100: 230 249 236;
|
688
|
-
--success-200: 204 243 217;
|
689
|
-
--success-300: 153 232 179;
|
690
|
-
--success-400: 102 220 141;
|
691
|
-
--success-500: 51 209 103;
|
692
|
-
--success-600: 0 194 48;
|
693
|
-
--success-700: 0 155 38;
|
694
|
-
--success-800: 0 116 29;
|
695
|
-
--success-900: 0 77 19;
|
696
|
-
--error-100: 254 233 231;
|
697
|
-
--error-200: 253 211 207;
|
698
|
-
--error-300: 251 167 159;
|
699
|
-
--error-400: 249 123 111;
|
700
|
-
--error-500: 247 80 63;
|
701
|
-
--error-600: 242 40 13;
|
702
|
-
--error-700: 194 32 10;
|
703
|
-
--error-800: 145 24 8;
|
704
|
-
--error-900: 97 16 5;
|
705
|
-
--warning-100: 255 246 230;
|
706
|
-
--warning-200: 255 237 204;
|
707
|
-
--warning-300: 255 219 153;
|
708
|
-
--warning-400: 255 201 102;
|
709
|
-
--warning-500: 255 184 51;
|
710
|
-
--warning-600: 255 174 0;
|
711
|
-
--warning-700: 204 139 0;
|
712
|
-
--warning-800: 153 104 0;
|
713
|
-
--warning-900: 102 70 0;
|
714
|
-
--info-100: 230 240 255;
|
715
|
-
--info-200: 204 224 255;
|
716
|
-
--info-300: 153 194 255;
|
717
|
-
--info-400: 102 163 255;
|
718
|
-
--info-500: 51 133 255;
|
719
|
-
--info-600: 0 92 255;
|
720
|
-
--info-700: 0 74 204;
|
721
|
-
--info-800: 0 55 153;
|
722
|
-
--info-900: 0 36 102;
|
723
|
-
}
|
724
|
-
|
725
|
-
.container {
|
726
|
-
width: 100%;
|
727
|
-
}
|
728
|
-
|
729
|
-
@media (min-width: 640px) {
|
730
|
-
.container {
|
731
|
-
max-width: 640px;
|
732
|
-
}
|
733
|
-
}
|
734
|
-
|
735
|
-
@media (min-width: 768px) {
|
736
|
-
.container {
|
737
|
-
max-width: 768px;
|
738
|
-
}
|
739
|
-
}
|
740
|
-
|
741
|
-
@media (min-width: 1024px) {
|
742
|
-
.container {
|
743
|
-
max-width: 1024px;
|
744
|
-
}
|
745
|
-
}
|
746
|
-
|
747
|
-
@media (min-width: 1280px) {
|
748
|
-
.container {
|
749
|
-
max-width: 1280px;
|
750
|
-
}
|
751
|
-
}
|
752
|
-
|
753
|
-
@media (min-width: 1536px) {
|
754
|
-
.container {
|
755
|
-
max-width: 1536px;
|
756
|
-
}
|
757
|
-
}
|
758
|
-
|
759
|
-
.pointer-events-auto {
|
760
|
-
pointer-events: auto;
|
761
|
-
}
|
762
|
-
|
763
|
-
.visible {
|
764
|
-
visibility: visible;
|
765
|
-
}
|
766
|
-
|
767
|
-
.invisible {
|
768
|
-
visibility: hidden;
|
769
|
-
}
|
770
|
-
|
771
|
-
.fixed {
|
772
|
-
position: fixed;
|
773
|
-
}
|
774
|
-
|
775
|
-
.absolute {
|
776
|
-
position: absolute;
|
777
|
-
}
|
778
|
-
|
779
|
-
.relative {
|
780
|
-
position: relative;
|
781
|
-
}
|
782
|
-
|
783
|
-
.inset-0 {
|
784
|
-
inset: 0px;
|
785
|
-
}
|
786
|
-
|
787
|
-
.inset-x-0 {
|
788
|
-
left: 0px;
|
789
|
-
right: 0px;
|
790
|
-
}
|
791
|
-
|
792
|
-
.bottom-0 {
|
793
|
-
bottom: 0px;
|
794
|
-
}
|
795
|
-
|
796
|
-
.bottom-1 {
|
797
|
-
bottom: 0.25rem;
|
798
|
-
}
|
799
|
-
|
800
|
-
.left-0 {
|
801
|
-
left: 0px;
|
802
|
-
}
|
803
|
-
|
804
|
-
.right-0 {
|
805
|
-
right: 0px;
|
806
|
-
}
|
807
|
-
|
808
|
-
.top-0 {
|
809
|
-
top: 0px;
|
810
|
-
}
|
811
|
-
|
812
|
-
.top-1 {
|
813
|
-
top: 0.25rem;
|
814
|
-
}
|
815
|
-
|
816
|
-
.z-10 {
|
817
|
-
z-index: 10;
|
818
|
-
}
|
819
|
-
|
820
|
-
.z-50 {
|
821
|
-
z-index: 50;
|
822
|
-
}
|
823
|
-
|
824
|
-
.z-\[100\] {
|
825
|
-
z-index: 100;
|
826
|
-
}
|
827
|
-
|
828
|
-
.m-3 {
|
829
|
-
margin: 0.75rem;
|
830
|
-
}
|
831
|
-
|
832
|
-
.mx-2 {
|
833
|
-
margin-left: 0.5rem;
|
834
|
-
margin-right: 0.5rem;
|
835
|
-
}
|
836
|
-
|
837
|
-
.mx-auto {
|
838
|
-
margin-left: auto;
|
839
|
-
margin-right: auto;
|
840
|
-
}
|
841
|
-
|
842
|
-
.my-4 {
|
843
|
-
margin-top: 1rem;
|
844
|
-
margin-bottom: 1rem;
|
845
|
-
}
|
846
|
-
|
847
|
-
.my-8 {
|
848
|
-
margin-top: 2rem;
|
849
|
-
margin-bottom: 2rem;
|
850
|
-
}
|
851
|
-
|
852
|
-
.mb-2 {
|
853
|
-
margin-bottom: 0.5rem;
|
854
|
-
}
|
855
|
-
|
856
|
-
.mb-4 {
|
857
|
-
margin-bottom: 1rem;
|
858
|
-
}
|
859
|
-
|
860
|
-
.mb-8 {
|
861
|
-
margin-bottom: 2rem;
|
862
|
-
}
|
863
|
-
|
864
|
-
.ml-4 {
|
865
|
-
margin-left: 1rem;
|
866
|
-
}
|
867
|
-
|
868
|
-
.mr-2 {
|
869
|
-
margin-right: 0.5rem;
|
870
|
-
}
|
871
|
-
|
872
|
-
.mr-3 {
|
873
|
-
margin-right: 0.75rem;
|
874
|
-
}
|
875
|
-
|
876
|
-
.mt-1 {
|
877
|
-
margin-top: 0.25rem;
|
878
|
-
}
|
879
|
-
|
880
|
-
.mt-24 {
|
881
|
-
margin-top: 6rem;
|
882
|
-
}
|
883
|
-
|
884
|
-
.block {
|
885
|
-
display: block;
|
886
|
-
}
|
887
|
-
|
888
|
-
.flex {
|
889
|
-
display: flex;
|
890
|
-
}
|
891
|
-
|
892
|
-
.inline-flex {
|
893
|
-
display: inline-flex;
|
894
|
-
}
|
895
|
-
|
896
|
-
.table {
|
897
|
-
display: table;
|
898
|
-
}
|
899
|
-
|
900
|
-
.grid {
|
901
|
-
display: grid;
|
902
|
-
}
|
903
|
-
|
904
|
-
.hidden {
|
905
|
-
display: none;
|
906
|
-
}
|
907
|
-
|
908
|
-
.aspect-square {
|
909
|
-
aspect-ratio: 1 / 1;
|
910
|
-
}
|
911
|
-
|
912
|
-
.size-10 {
|
913
|
-
width: 2.5rem;
|
914
|
-
height: 2.5rem;
|
915
|
-
}
|
916
|
-
|
917
|
-
.size-11 {
|
918
|
-
width: 2.75rem;
|
919
|
-
height: 2.75rem;
|
920
|
-
}
|
921
|
-
|
922
|
-
.size-12 {
|
923
|
-
width: 3rem;
|
924
|
-
height: 3rem;
|
925
|
-
}
|
926
|
-
|
927
|
-
.size-16 {
|
928
|
-
width: 4rem;
|
929
|
-
height: 4rem;
|
930
|
-
}
|
931
|
-
|
932
|
-
.size-5 {
|
933
|
-
width: 1.25rem;
|
934
|
-
height: 1.25rem;
|
935
|
-
}
|
936
|
-
|
937
|
-
.size-6 {
|
938
|
-
width: 1.5rem;
|
939
|
-
height: 1.5rem;
|
940
|
-
}
|
941
|
-
|
942
|
-
.size-8 {
|
943
|
-
width: 2rem;
|
944
|
-
height: 2rem;
|
945
|
-
}
|
946
|
-
|
947
|
-
.size-9 {
|
948
|
-
width: 2.25rem;
|
949
|
-
height: 2.25rem;
|
950
|
-
}
|
951
|
-
|
952
|
-
.size-\[0\.875rem\] {
|
953
|
-
width: 0.875rem;
|
954
|
-
height: 0.875rem;
|
955
|
-
}
|
956
|
-
|
957
|
-
.size-\[1\.5rem\] {
|
958
|
-
width: 1.5rem;
|
959
|
-
height: 1.5rem;
|
960
|
-
}
|
961
|
-
|
962
|
-
.size-\[1\.625rem\] {
|
963
|
-
width: 1.625rem;
|
964
|
-
height: 1.625rem;
|
965
|
-
}
|
966
|
-
|
967
|
-
.size-\[2\.125rem\] {
|
968
|
-
width: 2.125rem;
|
969
|
-
height: 2.125rem;
|
970
|
-
}
|
971
|
-
|
972
|
-
.size-\[3\.25rem\] {
|
973
|
-
width: 3.25rem;
|
974
|
-
height: 3.25rem;
|
975
|
-
}
|
976
|
-
|
977
|
-
.size-\[5\.5rem\] {
|
978
|
-
width: 5.5rem;
|
979
|
-
height: 5.5rem;
|
980
|
-
}
|
981
|
-
|
982
|
-
.size-full {
|
983
|
-
width: 100%;
|
984
|
-
height: 100%;
|
985
|
-
}
|
986
|
-
|
987
|
-
.h-1\.5 {
|
988
|
-
height: 0.375rem;
|
989
|
-
}
|
990
|
-
|
991
|
-
.h-10 {
|
992
|
-
height: 2.5rem;
|
993
|
-
}
|
994
|
-
|
995
|
-
.h-12 {
|
996
|
-
height: 3rem;
|
997
|
-
}
|
998
|
-
|
999
|
-
.h-14 {
|
1000
|
-
height: 3.5rem;
|
1001
|
-
}
|
1002
|
-
|
1003
|
-
.h-20 {
|
1004
|
-
height: 5rem;
|
1005
|
-
}
|
1006
|
-
|
1007
|
-
.h-4 {
|
1008
|
-
height: 1rem;
|
1009
|
-
}
|
1010
|
-
|
1011
|
-
.h-5 {
|
1012
|
-
height: 1.25rem;
|
1013
|
-
}
|
1014
|
-
|
1015
|
-
.h-6 {
|
1016
|
-
height: 1.5rem;
|
1017
|
-
}
|
1018
|
-
|
1019
|
-
.h-7 {
|
1020
|
-
height: 1.75rem;
|
1021
|
-
}
|
1022
|
-
|
1023
|
-
.h-9 {
|
1024
|
-
height: 2.25rem;
|
1025
|
-
}
|
1026
|
-
|
1027
|
-
.h-\[1\.625rem\] {
|
1028
|
-
height: 1.625rem;
|
1029
|
-
}
|
1030
|
-
|
1031
|
-
.h-\[1px\] {
|
1032
|
-
height: 1px;
|
1033
|
-
}
|
1034
|
-
|
1035
|
-
.h-\[3\.125rem\] {
|
1036
|
-
height: 3.125rem;
|
1037
|
-
}
|
1038
|
-
|
1039
|
-
.h-\[3\.5rem\] {
|
1040
|
-
height: 3.5rem;
|
1041
|
-
}
|
1042
|
-
|
1043
|
-
.h-\[3\.75rem\] {
|
1044
|
-
height: 3.75rem;
|
1045
|
-
}
|
1046
|
-
|
1047
|
-
.h-\[4\.25rem\] {
|
1048
|
-
height: 4.25rem;
|
1049
|
-
}
|
1050
|
-
|
1051
|
-
.h-\[4\.5rem\] {
|
1052
|
-
height: 4.5rem;
|
1053
|
-
}
|
1054
|
-
|
1055
|
-
.h-\[4\.75rem\] {
|
1056
|
-
height: 4.75rem;
|
1057
|
-
}
|
1058
|
-
|
1059
|
-
.h-\[var\(--radix-select-trigger-height\)\] {
|
1060
|
-
height: var(--radix-select-trigger-height);
|
1061
|
-
}
|
1062
|
-
|
1063
|
-
.h-auto {
|
1064
|
-
height: auto;
|
1065
|
-
}
|
1066
|
-
|
1067
|
-
.h-full {
|
1068
|
-
height: 100%;
|
1069
|
-
}
|
1070
|
-
|
1071
|
-
.h-screen {
|
1072
|
-
height: 100vh;
|
1073
|
-
}
|
1074
|
-
|
1075
|
-
.max-h-\[11\.75rem\] {
|
1076
|
-
max-height: 11.75rem;
|
1077
|
-
}
|
1078
|
-
|
1079
|
-
.max-h-screen {
|
1080
|
-
max-height: 100vh;
|
1081
|
-
}
|
1082
|
-
|
1083
|
-
.min-h-14 {
|
1084
|
-
min-height: 3.5rem;
|
1085
|
-
}
|
1086
|
-
|
1087
|
-
.min-h-\[7\.5rem\] {
|
1088
|
-
min-height: 7.5rem;
|
1089
|
-
}
|
1090
|
-
|
1091
|
-
.w-10 {
|
1092
|
-
width: 2.5rem;
|
1093
|
-
}
|
1094
|
-
|
1095
|
-
.w-12 {
|
1096
|
-
width: 3rem;
|
1097
|
-
}
|
1098
|
-
|
1099
|
-
.w-16 {
|
1100
|
-
width: 4rem;
|
1101
|
-
}
|
1102
|
-
|
1103
|
-
.w-24 {
|
1104
|
-
width: 6rem;
|
1105
|
-
}
|
1106
|
-
|
1107
|
-
.w-32 {
|
1108
|
-
width: 8rem;
|
1109
|
-
}
|
1110
|
-
|
1111
|
-
.w-4 {
|
1112
|
-
width: 1rem;
|
1113
|
-
}
|
1114
|
-
|
1115
|
-
.w-5 {
|
1116
|
-
width: 1.25rem;
|
1117
|
-
}
|
1118
|
-
|
1119
|
-
.w-6 {
|
1120
|
-
width: 1.5rem;
|
1121
|
-
}
|
1122
|
-
|
1123
|
-
.w-80 {
|
1124
|
-
width: 20rem;
|
1125
|
-
}
|
1126
|
-
|
1127
|
-
.w-\[300px\] {
|
1128
|
-
width: 300px;
|
1129
|
-
}
|
1130
|
-
|
1131
|
-
.w-\[400px\] {
|
1132
|
-
width: 400px;
|
1133
|
-
}
|
1134
|
-
|
1135
|
-
.w-\[7\.5rem\] {
|
1136
|
-
width: 7.5rem;
|
1137
|
-
}
|
1138
|
-
|
1139
|
-
.w-full {
|
1140
|
-
width: 100%;
|
1141
|
-
}
|
1142
|
-
|
1143
|
-
.min-w-0 {
|
1144
|
-
min-width: 0px;
|
1145
|
-
}
|
1146
|
-
|
1147
|
-
.min-w-10 {
|
1148
|
-
min-width: 2.5rem;
|
1149
|
-
}
|
1150
|
-
|
1151
|
-
.min-w-14 {
|
1152
|
-
min-width: 3.5rem;
|
1153
|
-
}
|
1154
|
-
|
1155
|
-
.min-w-28 {
|
1156
|
-
min-width: 7rem;
|
1157
|
-
}
|
1158
|
-
|
1159
|
-
.min-w-\[var\(--radix-select-trigger-width\)\] {
|
1160
|
-
min-width: var(--radix-select-trigger-width);
|
1161
|
-
}
|
1162
|
-
|
1163
|
-
.max-w-md {
|
1164
|
-
max-width: 28rem;
|
1165
|
-
}
|
1166
|
-
|
1167
|
-
.flex-1 {
|
1168
|
-
flex: 1 1 0%;
|
1169
|
-
}
|
1170
|
-
|
1171
|
-
.flex-shrink-0 {
|
1172
|
-
flex-shrink: 0;
|
1173
|
-
}
|
1174
|
-
|
1175
|
-
.shrink-0 {
|
1176
|
-
flex-shrink: 0;
|
1177
|
-
}
|
1178
|
-
|
1179
|
-
.flex-grow {
|
1180
|
-
flex-grow: 1;
|
1181
|
-
}
|
1182
|
-
|
1183
|
-
.grow {
|
1184
|
-
flex-grow: 1;
|
1185
|
-
}
|
1186
|
-
|
1187
|
-
.-translate-y-\[0\.6rem\] {
|
1188
|
-
--tw-translate-y: -0.6rem;
|
1189
|
-
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));
|
1190
|
-
}
|
1191
|
-
|
1192
|
-
.translate-x-0 {
|
1193
|
-
--tw-translate-x: 0px;
|
1194
|
-
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));
|
1195
|
-
}
|
1196
|
-
|
1197
|
-
.translate-x-4 {
|
1198
|
-
--tw-translate-x: 1rem;
|
1199
|
-
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));
|
1200
|
-
}
|
1201
|
-
|
1202
|
-
.transform {
|
1203
|
-
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));
|
1204
|
-
}
|
1205
|
-
|
1206
|
-
.animate-none {
|
1207
|
-
animation: none;
|
1208
|
-
}
|
1209
|
-
|
1210
|
-
@keyframes pulse {
|
1211
|
-
50% {
|
1212
|
-
opacity: .5;
|
1213
|
-
}
|
1214
|
-
}
|
1215
|
-
|
1216
|
-
.animate-pulse {
|
1217
|
-
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
1218
|
-
}
|
1219
|
-
|
1220
|
-
@keyframes spin {
|
1221
|
-
to {
|
1222
|
-
transform: rotate(360deg);
|
1223
|
-
}
|
1224
|
-
}
|
1225
|
-
|
1226
|
-
.animate-spin {
|
1227
|
-
animation: spin 1s linear infinite;
|
1228
|
-
}
|
1229
|
-
|
1230
|
-
.cursor-default {
|
1231
|
-
cursor: default;
|
1232
|
-
}
|
1233
|
-
|
1234
|
-
.cursor-not-allowed {
|
1235
|
-
cursor: not-allowed;
|
1236
|
-
}
|
1237
|
-
|
1238
|
-
.cursor-pointer {
|
1239
|
-
cursor: pointer;
|
1240
|
-
}
|
1241
|
-
|
1242
|
-
.select-none {
|
1243
|
-
-webkit-user-select: none;
|
1244
|
-
-moz-user-select: none;
|
1245
|
-
user-select: none;
|
1246
|
-
}
|
1247
|
-
|
1248
|
-
.resize-y {
|
1249
|
-
resize: vertical;
|
1250
|
-
}
|
1251
|
-
|
1252
|
-
.auto-cols-fr {
|
1253
|
-
grid-auto-columns: minmax(0, 1fr);
|
1254
|
-
}
|
1255
|
-
|
1256
|
-
.grid-cols-1 {
|
1257
|
-
grid-template-columns: repeat(1, minmax(0, 1fr));
|
1258
|
-
}
|
1259
|
-
|
1260
|
-
.grid-cols-3 {
|
1261
|
-
grid-template-columns: repeat(3, minmax(0, 1fr));
|
1262
|
-
}
|
1263
|
-
|
1264
|
-
.grid-cols-\[auto_1fr\] {
|
1265
|
-
grid-template-columns: auto 1fr;
|
1266
|
-
}
|
1267
|
-
|
1268
|
-
.grid-rows-4 {
|
1269
|
-
grid-template-rows: repeat(4, minmax(0, 1fr));
|
1270
|
-
}
|
1271
|
-
|
1272
|
-
.flex-row {
|
1273
|
-
flex-direction: row;
|
1274
|
-
}
|
1275
|
-
|
1276
|
-
.flex-col {
|
1277
|
-
flex-direction: column;
|
1278
|
-
}
|
1279
|
-
|
1280
|
-
.flex-col-reverse {
|
1281
|
-
flex-direction: column-reverse;
|
1282
|
-
}
|
1283
|
-
|
1284
|
-
.flex-wrap {
|
1285
|
-
flex-wrap: wrap;
|
1286
|
-
}
|
1287
|
-
|
1288
|
-
.content-start {
|
1289
|
-
align-content: flex-start;
|
1290
|
-
}
|
1291
|
-
|
1292
|
-
.items-start {
|
1293
|
-
align-items: flex-start;
|
1294
|
-
}
|
1295
|
-
|
1296
|
-
.items-center {
|
1297
|
-
align-items: center;
|
1298
|
-
}
|
1299
|
-
|
1300
|
-
.justify-start {
|
1301
|
-
justify-content: flex-start;
|
1302
|
-
}
|
1303
|
-
|
1304
|
-
.justify-end {
|
1305
|
-
justify-content: flex-end;
|
1306
|
-
}
|
1307
|
-
|
1308
|
-
.justify-center {
|
1309
|
-
justify-content: center;
|
1310
|
-
}
|
1311
|
-
|
1312
|
-
.justify-between {
|
1313
|
-
justify-content: space-between;
|
1314
|
-
}
|
1315
|
-
|
1316
|
-
.gap-0\.5 {
|
1317
|
-
gap: 0.125rem;
|
1318
|
-
}
|
1319
|
-
|
1320
|
-
.gap-1 {
|
1321
|
-
gap: 0.25rem;
|
1322
|
-
}
|
1323
|
-
|
1324
|
-
.gap-12 {
|
1325
|
-
gap: 3rem;
|
1326
|
-
}
|
1327
|
-
|
1328
|
-
.gap-2 {
|
1329
|
-
gap: 0.5rem;
|
1330
|
-
}
|
1331
|
-
|
1332
|
-
.gap-4 {
|
1333
|
-
gap: 1rem;
|
1334
|
-
}
|
1335
|
-
|
1336
|
-
.gap-5 {
|
1337
|
-
gap: 1.25rem;
|
1338
|
-
}
|
1339
|
-
|
1340
|
-
.gap-6 {
|
1341
|
-
gap: 1.5rem;
|
1342
|
-
}
|
1343
|
-
|
1344
|
-
.gap-x-2 {
|
1345
|
-
-moz-column-gap: 0.5rem;
|
1346
|
-
column-gap: 0.5rem;
|
1347
|
-
}
|
1348
|
-
|
1349
|
-
.gap-x-3 {
|
1350
|
-
-moz-column-gap: 0.75rem;
|
1351
|
-
column-gap: 0.75rem;
|
1352
|
-
}
|
1353
|
-
|
1354
|
-
.gap-x-4 {
|
1355
|
-
-moz-column-gap: 1rem;
|
1356
|
-
column-gap: 1rem;
|
1357
|
-
}
|
1358
|
-
|
1359
|
-
.gap-y-5 {
|
1360
|
-
row-gap: 1.25rem;
|
1361
|
-
}
|
1362
|
-
|
1363
|
-
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
|
1364
|
-
--tw-space-x-reverse: 0;
|
1365
|
-
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
1366
|
-
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
1367
|
-
}
|
1368
|
-
|
1369
|
-
.overflow-auto {
|
1370
|
-
overflow: auto;
|
1371
|
-
}
|
1372
|
-
|
1373
|
-
.overflow-hidden {
|
1374
|
-
overflow: hidden;
|
1375
|
-
}
|
1376
|
-
|
1377
|
-
.truncate {
|
1378
|
-
overflow: hidden;
|
1379
|
-
text-overflow: ellipsis;
|
1380
|
-
white-space: nowrap;
|
1381
|
-
}
|
1382
|
-
|
1383
|
-
.text-ellipsis {
|
1384
|
-
text-overflow: ellipsis;
|
1385
|
-
}
|
1386
|
-
|
1387
|
-
.whitespace-nowrap {
|
1388
|
-
white-space: nowrap;
|
1389
|
-
}
|
1390
|
-
|
1391
|
-
.rounded {
|
1392
|
-
border-radius: 0.25rem;
|
1393
|
-
}
|
1394
|
-
|
1395
|
-
.rounded-2xl {
|
1396
|
-
border-radius: 1rem;
|
1397
|
-
}
|
1398
|
-
|
1399
|
-
.rounded-\[0\.625rem\] {
|
1400
|
-
border-radius: 0.625rem;
|
1401
|
-
}
|
1402
|
-
|
1403
|
-
.rounded-\[1\.75rem\] {
|
1404
|
-
border-radius: 1.75rem;
|
1405
|
-
}
|
1406
|
-
|
1407
|
-
.rounded-full {
|
1408
|
-
border-radius: 9999px;
|
1409
|
-
}
|
1410
|
-
|
1411
|
-
.rounded-lg {
|
1412
|
-
border-radius: 0.5rem;
|
1413
|
-
}
|
1414
|
-
|
1415
|
-
.rounded-md {
|
1416
|
-
border-radius: 0.375rem;
|
1417
|
-
}
|
1418
|
-
|
1419
|
-
.rounded-none {
|
1420
|
-
border-radius: 0px;
|
1421
|
-
}
|
1422
|
-
|
1423
|
-
.rounded-t-\[0\.625rem\] {
|
1424
|
-
border-top-left-radius: 0.625rem;
|
1425
|
-
border-top-right-radius: 0.625rem;
|
1426
|
-
}
|
1427
|
-
|
1428
|
-
.rounded-t-\[1\.75rem\] {
|
1429
|
-
border-top-left-radius: 1.75rem;
|
1430
|
-
border-top-right-radius: 1.75rem;
|
1431
|
-
}
|
1432
|
-
|
1433
|
-
.border {
|
1434
|
-
border-width: 1px;
|
1435
|
-
}
|
1436
|
-
|
1437
|
-
.border-2 {
|
1438
|
-
border-width: 2px;
|
1439
|
-
}
|
1440
|
-
|
1441
|
-
.border-\[0\.09375rem\] {
|
1442
|
-
border-width: 0.09375rem;
|
1443
|
-
}
|
1444
|
-
|
1445
|
-
.border-x {
|
1446
|
-
border-left-width: 1px;
|
1447
|
-
border-right-width: 1px;
|
1448
|
-
}
|
1449
|
-
|
1450
|
-
.border-r {
|
1451
|
-
border-right-width: 1px;
|
1452
|
-
}
|
1453
|
-
|
1454
|
-
.border-t {
|
1455
|
-
border-top-width: 1px;
|
1456
|
-
}
|
1457
|
-
|
1458
|
-
.border-error-600 {
|
1459
|
-
--tw-border-opacity: 1;
|
1460
|
-
border-color: rgb(var(--error-600) / var(--tw-border-opacity, 1));
|
1461
|
-
}
|
1462
|
-
|
1463
|
-
.border-error-700 {
|
1464
|
-
--tw-border-opacity: 1;
|
1465
|
-
border-color: rgb(var(--error-700) / var(--tw-border-opacity, 1));
|
1466
|
-
}
|
1467
|
-
|
1468
|
-
.border-gray-0 {
|
1469
|
-
--tw-border-opacity: 1;
|
1470
|
-
border-color: rgb(var(--gray-0) / var(--tw-border-opacity, 1));
|
1471
|
-
}
|
1472
|
-
|
1473
|
-
.border-gray-100 {
|
1474
|
-
--tw-border-opacity: 1;
|
1475
|
-
border-color: rgb(var(--gray-100) / var(--tw-border-opacity, 1));
|
1476
|
-
}
|
1477
|
-
|
1478
|
-
.border-gray-200 {
|
1479
|
-
--tw-border-opacity: 1;
|
1480
|
-
border-color: rgb(var(--gray-200) / var(--tw-border-opacity, 1));
|
1481
|
-
}
|
1482
|
-
|
1483
|
-
.border-gray-300 {
|
1484
|
-
--tw-border-opacity: 1;
|
1485
|
-
border-color: rgb(var(--gray-300) / var(--tw-border-opacity, 1));
|
1486
|
-
}
|
1487
|
-
|
1488
|
-
.border-gray-400 {
|
1489
|
-
--tw-border-opacity: 1;
|
1490
|
-
border-color: rgb(var(--gray-400) / var(--tw-border-opacity, 1));
|
1491
|
-
}
|
1492
|
-
|
1493
|
-
.border-gray-900 {
|
1494
|
-
--tw-border-opacity: 1;
|
1495
|
-
border-color: rgb(var(--gray-900) / var(--tw-border-opacity, 1));
|
1496
|
-
}
|
1497
|
-
|
1498
|
-
.bg-current {
|
1499
|
-
background-color: currentColor;
|
1500
|
-
}
|
1501
|
-
|
1502
|
-
.bg-error-100 {
|
1503
|
-
--tw-bg-opacity: 1;
|
1504
|
-
background-color: rgb(var(--error-100) / var(--tw-bg-opacity, 1));
|
1505
|
-
}
|
1506
|
-
|
1507
|
-
.bg-error-500 {
|
1508
|
-
--tw-bg-opacity: 1;
|
1509
|
-
background-color: rgb(var(--error-500) / var(--tw-bg-opacity, 1));
|
1510
|
-
}
|
1511
|
-
|
1512
|
-
.bg-gray-0 {
|
1513
|
-
--tw-bg-opacity: 1;
|
1514
|
-
background-color: rgb(var(--gray-0) / var(--tw-bg-opacity, 1));
|
1515
|
-
}
|
1516
|
-
|
1517
|
-
.bg-gray-100 {
|
1518
|
-
--tw-bg-opacity: 1;
|
1519
|
-
background-color: rgb(var(--gray-100) / var(--tw-bg-opacity, 1));
|
1520
|
-
}
|
1521
|
-
|
1522
|
-
.bg-gray-200 {
|
1523
|
-
--tw-bg-opacity: 1;
|
1524
|
-
background-color: rgb(var(--gray-200) / var(--tw-bg-opacity, 1));
|
1525
|
-
}
|
1526
|
-
|
1527
|
-
.bg-gray-300 {
|
1528
|
-
--tw-bg-opacity: 1;
|
1529
|
-
background-color: rgb(var(--gray-300) / var(--tw-bg-opacity, 1));
|
1530
|
-
}
|
1531
|
-
|
1532
|
-
.bg-gray-50 {
|
1533
|
-
--tw-bg-opacity: 1;
|
1534
|
-
background-color: rgb(var(--gray-50) / var(--tw-bg-opacity, 1));
|
1535
|
-
}
|
1536
|
-
|
1537
|
-
.bg-gray-900 {
|
1538
|
-
--tw-bg-opacity: 1;
|
1539
|
-
background-color: rgb(var(--gray-900) / var(--tw-bg-opacity, 1));
|
1540
|
-
}
|
1541
|
-
|
1542
|
-
.bg-gray-900\/40 {
|
1543
|
-
background-color: rgb(var(--gray-900) / 0.4);
|
1544
|
-
}
|
1545
|
-
|
1546
|
-
.bg-info-100 {
|
1547
|
-
--tw-bg-opacity: 1;
|
1548
|
-
background-color: rgb(var(--info-100) / var(--tw-bg-opacity, 1));
|
1549
|
-
}
|
1550
|
-
|
1551
|
-
.bg-success-100 {
|
1552
|
-
--tw-bg-opacity: 1;
|
1553
|
-
background-color: rgb(var(--success-100) / var(--tw-bg-opacity, 1));
|
1554
|
-
}
|
1555
|
-
|
1556
|
-
.bg-success-500 {
|
1557
|
-
--tw-bg-opacity: 1;
|
1558
|
-
background-color: rgb(var(--success-500) / var(--tw-bg-opacity, 1));
|
1559
|
-
}
|
1560
|
-
|
1561
|
-
.bg-transparent {
|
1562
|
-
background-color: transparent;
|
1563
|
-
}
|
1564
|
-
|
1565
|
-
.bg-warning-100 {
|
1566
|
-
--tw-bg-opacity: 1;
|
1567
|
-
background-color: rgb(var(--warning-100) / var(--tw-bg-opacity, 1));
|
1568
|
-
}
|
1569
|
-
|
1570
|
-
.fill-current {
|
1571
|
-
fill: currentColor;
|
1572
|
-
}
|
1573
|
-
|
1574
|
-
.fill-gray-0 {
|
1575
|
-
fill: rgb(var(--gray-0) / 1);
|
1576
|
-
}
|
1577
|
-
|
1578
|
-
.fill-gray-100 {
|
1579
|
-
fill: rgb(var(--gray-100) / 1);
|
1580
|
-
}
|
1581
|
-
|
1582
|
-
.fill-gray-350 {
|
1583
|
-
fill: rgb(var(--gray-350) / 1);
|
1584
|
-
}
|
1585
|
-
|
1586
|
-
.fill-gray-900 {
|
1587
|
-
fill: rgb(var(--gray-900) / 1);
|
1588
|
-
}
|
1589
|
-
|
1590
|
-
.object-cover {
|
1591
|
-
-o-object-fit: cover;
|
1592
|
-
object-fit: cover;
|
1593
|
-
}
|
1594
|
-
|
1595
|
-
.p-2 {
|
1596
|
-
padding: 0.5rem;
|
1597
|
-
}
|
1598
|
-
|
1599
|
-
.p-4 {
|
1600
|
-
padding: 1rem;
|
1601
|
-
}
|
1602
|
-
|
1603
|
-
.p-6 {
|
1604
|
-
padding: 1.5rem;
|
1605
|
-
}
|
1606
|
-
|
1607
|
-
.p-8 {
|
1608
|
-
padding: 2rem;
|
1609
|
-
}
|
1610
|
-
|
1611
|
-
.p-\[3px\] {
|
1612
|
-
padding: 3px;
|
1613
|
-
}
|
1614
|
-
|
1615
|
-
.px-1 {
|
1616
|
-
padding-left: 0.25rem;
|
1617
|
-
padding-right: 0.25rem;
|
1618
|
-
}
|
1619
|
-
|
1620
|
-
.px-2 {
|
1621
|
-
padding-left: 0.5rem;
|
1622
|
-
padding-right: 0.5rem;
|
1623
|
-
}
|
1624
|
-
|
1625
|
-
.px-4 {
|
1626
|
-
padding-left: 1rem;
|
1627
|
-
padding-right: 1rem;
|
1628
|
-
}
|
1629
|
-
|
1630
|
-
.px-5 {
|
1631
|
-
padding-left: 1.25rem;
|
1632
|
-
padding-right: 1.25rem;
|
1633
|
-
}
|
1634
|
-
|
1635
|
-
.px-6 {
|
1636
|
-
padding-left: 1.5rem;
|
1637
|
-
padding-right: 1.5rem;
|
1638
|
-
}
|
1639
|
-
|
1640
|
-
.py-12 {
|
1641
|
-
padding-top: 3rem;
|
1642
|
-
padding-bottom: 3rem;
|
1643
|
-
}
|
1644
|
-
|
1645
|
-
.py-2 {
|
1646
|
-
padding-top: 0.5rem;
|
1647
|
-
padding-bottom: 0.5rem;
|
1648
|
-
}
|
1649
|
-
|
1650
|
-
.pb-2 {
|
1651
|
-
padding-bottom: 0.5rem;
|
1652
|
-
}
|
1653
|
-
|
1654
|
-
.pb-20 {
|
1655
|
-
padding-bottom: 5rem;
|
1656
|
-
}
|
1657
|
-
|
1658
|
-
.pl-2 {
|
1659
|
-
padding-left: 0.5rem;
|
1660
|
-
}
|
1661
|
-
|
1662
|
-
.pl-3 {
|
1663
|
-
padding-left: 0.75rem;
|
1664
|
-
}
|
1665
|
-
|
1666
|
-
.pl-4 {
|
1667
|
-
padding-left: 1rem;
|
1668
|
-
}
|
1669
|
-
|
1670
|
-
.pr-2 {
|
1671
|
-
padding-right: 0.5rem;
|
1672
|
-
}
|
1673
|
-
|
1674
|
-
.pr-3 {
|
1675
|
-
padding-right: 0.75rem;
|
1676
|
-
}
|
1677
|
-
|
1678
|
-
.pt-4 {
|
1679
|
-
padding-top: 1rem;
|
1680
|
-
}
|
1681
|
-
|
1682
|
-
.pt-6 {
|
1683
|
-
padding-top: 1.5rem;
|
1684
|
-
}
|
1685
|
-
|
1686
|
-
.pt-8 {
|
1687
|
-
padding-top: 2rem;
|
1688
|
-
}
|
1689
|
-
|
1690
|
-
.text-left {
|
1691
|
-
text-align: left;
|
1692
|
-
}
|
1693
|
-
|
1694
|
-
.text-center {
|
1695
|
-
text-align: center;
|
1696
|
-
}
|
1697
|
-
|
1698
|
-
.font-sans {
|
1699
|
-
font-family: var(--font-sans);
|
1700
|
-
}
|
1701
|
-
|
1702
|
-
.text-2xl {
|
1703
|
-
font-size: 1.625rem;
|
1704
|
-
}
|
1705
|
-
|
1706
|
-
.text-2xs {
|
1707
|
-
font-size: 0.6875rem;
|
1708
|
-
}
|
1709
|
-
|
1710
|
-
.text-3xl {
|
1711
|
-
font-size: 1.875rem;
|
1712
|
-
}
|
1713
|
-
|
1714
|
-
.text-4xl {
|
1715
|
-
font-size: 2.125rem;
|
1716
|
-
}
|
1717
|
-
|
1718
|
-
.text-5xl {
|
1719
|
-
font-size: 2.5rem;
|
1720
|
-
}
|
1721
|
-
|
1722
|
-
.text-6xl {
|
1723
|
-
font-size: 2.75rem;
|
1724
|
-
}
|
1725
|
-
|
1726
|
-
.text-7xl {
|
1727
|
-
font-size: 3.5rem;
|
1728
|
-
}
|
1729
|
-
|
1730
|
-
.text-\[1\.375rem\] {
|
1731
|
-
font-size: 1.375rem;
|
1732
|
-
}
|
1733
|
-
|
1734
|
-
.text-\[15px\] {
|
1735
|
-
font-size: 15px;
|
1736
|
-
}
|
1737
|
-
|
1738
|
-
.text-\[17px\] {
|
1739
|
-
font-size: 17px;
|
1740
|
-
}
|
1741
|
-
|
1742
|
-
.text-\[3\.5rem\] {
|
1743
|
-
font-size: 3.5rem;
|
1744
|
-
}
|
1745
|
-
|
1746
|
-
.text-base {
|
1747
|
-
font-size: 1.0625rem;
|
1748
|
-
}
|
1749
|
-
|
1750
|
-
.text-lg {
|
1751
|
-
font-size: 1.1875rem;
|
1752
|
-
}
|
1753
|
-
|
1754
|
-
.text-sm {
|
1755
|
-
font-size: 0.9375rem;
|
1756
|
-
}
|
1757
|
-
|
1758
|
-
.text-xl {
|
1759
|
-
font-size: 1.3125rem;
|
1760
|
-
}
|
1761
|
-
|
1762
|
-
.text-xs {
|
1763
|
-
font-size: 0.8125rem;
|
1764
|
-
}
|
1765
|
-
|
1766
|
-
.font-medium {
|
1767
|
-
font-weight: 500;
|
1768
|
-
}
|
1769
|
-
|
1770
|
-
.font-normal {
|
1771
|
-
font-weight: 400;
|
1772
|
-
}
|
1773
|
-
|
1774
|
-
.font-semibold {
|
1775
|
-
font-weight: 600;
|
1776
|
-
}
|
1777
|
-
|
1778
|
-
.leading-\[1\.2\] {
|
1779
|
-
line-height: 1.2;
|
1780
|
-
}
|
1781
|
-
|
1782
|
-
.leading-compact {
|
1783
|
-
line-height: 1.3;
|
1784
|
-
}
|
1785
|
-
|
1786
|
-
.leading-narrow {
|
1787
|
-
line-height: 1.2;
|
1788
|
-
}
|
1789
|
-
|
1790
|
-
.leading-none {
|
1791
|
-
line-height: 1;
|
1792
|
-
}
|
1793
|
-
|
1794
|
-
.tracking-\[-0\.01em\] {
|
1795
|
-
letter-spacing: -0.01em;
|
1796
|
-
}
|
1797
|
-
|
1798
|
-
.tracking-\[-0\.02em\] {
|
1799
|
-
letter-spacing: -0.02em;
|
1800
|
-
}
|
1801
|
-
|
1802
|
-
.tracking-normal {
|
1803
|
-
letter-spacing: 0em;
|
1804
|
-
}
|
1805
|
-
|
1806
|
-
.text-error-600 {
|
1807
|
-
--tw-text-opacity: 1;
|
1808
|
-
color: rgb(var(--error-600) / var(--tw-text-opacity, 1));
|
1809
|
-
}
|
1810
|
-
|
1811
|
-
.text-error-700 {
|
1812
|
-
--tw-text-opacity: 1;
|
1813
|
-
color: rgb(var(--error-700) / var(--tw-text-opacity, 1));
|
1814
|
-
}
|
1815
|
-
|
1816
|
-
.text-gray-0 {
|
1817
|
-
--tw-text-opacity: 1;
|
1818
|
-
color: rgb(var(--gray-0) / var(--tw-text-opacity, 1));
|
1819
|
-
}
|
1820
|
-
|
1821
|
-
.text-gray-300 {
|
1822
|
-
--tw-text-opacity: 1;
|
1823
|
-
color: rgb(var(--gray-300) / var(--tw-text-opacity, 1));
|
1824
|
-
}
|
1825
|
-
|
1826
|
-
.text-gray-350 {
|
1827
|
-
--tw-text-opacity: 1;
|
1828
|
-
color: rgb(var(--gray-350) / var(--tw-text-opacity, 1));
|
1829
|
-
}
|
1830
|
-
|
1831
|
-
.text-gray-400 {
|
1832
|
-
--tw-text-opacity: 1;
|
1833
|
-
color: rgb(var(--gray-400) / var(--tw-text-opacity, 1));
|
1834
|
-
}
|
1835
|
-
|
1836
|
-
.text-gray-500 {
|
1837
|
-
--tw-text-opacity: 1;
|
1838
|
-
color: rgb(var(--gray-500) / var(--tw-text-opacity, 1));
|
1839
|
-
}
|
1840
|
-
|
1841
|
-
.text-gray-900 {
|
1842
|
-
--tw-text-opacity: 1;
|
1843
|
-
color: rgb(var(--gray-900) / var(--tw-text-opacity, 1));
|
1844
|
-
}
|
1845
|
-
|
1846
|
-
.text-info-700 {
|
1847
|
-
--tw-text-opacity: 1;
|
1848
|
-
color: rgb(var(--info-700) / var(--tw-text-opacity, 1));
|
1849
|
-
}
|
1850
|
-
|
1851
|
-
.text-success-600 {
|
1852
|
-
--tw-text-opacity: 1;
|
1853
|
-
color: rgb(var(--success-600) / var(--tw-text-opacity, 1));
|
1854
|
-
}
|
1855
|
-
|
1856
|
-
.text-success-700 {
|
1857
|
-
--tw-text-opacity: 1;
|
1858
|
-
color: rgb(var(--success-700) / var(--tw-text-opacity, 1));
|
1859
|
-
}
|
1860
|
-
|
1861
|
-
.text-warning-700 {
|
1862
|
-
--tw-text-opacity: 1;
|
1863
|
-
color: rgb(var(--warning-700) / var(--tw-text-opacity, 1));
|
1864
|
-
}
|
1865
|
-
|
1866
|
-
.opacity-20 {
|
1867
|
-
opacity: 0.2;
|
1868
|
-
}
|
1869
|
-
|
1870
|
-
.opacity-40 {
|
1871
|
-
opacity: 0.4;
|
1872
|
-
}
|
1873
|
-
|
1874
|
-
.shadow-none {
|
1875
|
-
--tw-shadow: 0 0 #0000;
|
1876
|
-
--tw-shadow-colored: 0 0 #0000;
|
1877
|
-
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
1878
|
-
}
|
1879
|
-
|
1880
|
-
.outline-none {
|
1881
|
-
outline: 2px solid transparent;
|
1882
|
-
outline-offset: 2px;
|
1883
|
-
}
|
1884
|
-
|
1885
|
-
.outline {
|
1886
|
-
outline-style: solid;
|
1887
|
-
}
|
1888
|
-
|
1889
|
-
.filter {
|
1890
|
-
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
1891
|
-
}
|
1892
|
-
|
1893
|
-
.transition {
|
1894
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
|
1895
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
1896
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
|
1897
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
1898
|
-
transition-duration: 150ms;
|
1899
|
-
}
|
1900
|
-
|
1901
|
-
.transition-all {
|
1902
|
-
transition-property: all;
|
1903
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
1904
|
-
transition-duration: 150ms;
|
1905
|
-
}
|
1906
|
-
|
1907
|
-
.transition-colors {
|
1908
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
1909
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
1910
|
-
transition-duration: 150ms;
|
1911
|
-
}
|
1912
|
-
|
1913
|
-
.transition-transform {
|
1914
|
-
transition-property: transform;
|
1915
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
1916
|
-
transition-duration: 150ms;
|
1917
|
-
}
|
1918
|
-
|
1919
|
-
.duration-200 {
|
1920
|
-
transition-duration: 200ms;
|
1921
|
-
}
|
1922
|
-
|
1923
|
-
.duration-300 {
|
1924
|
-
transition-duration: 300ms;
|
1925
|
-
}
|
1926
|
-
|
1927
|
-
@keyframes enter {
|
1928
|
-
from {
|
1929
|
-
opacity: var(--tw-enter-opacity, 1);
|
1930
|
-
transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0) scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0));
|
1931
|
-
}
|
1932
|
-
}
|
1933
|
-
|
1934
|
-
@keyframes exit {
|
1935
|
-
to {
|
1936
|
-
opacity: var(--tw-exit-opacity, 1);
|
1937
|
-
transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0));
|
1938
|
-
}
|
1939
|
-
}
|
1940
|
-
|
1941
|
-
.duration-200 {
|
1942
|
-
animation-duration: 200ms;
|
1943
|
-
}
|
1944
|
-
|
1945
|
-
.duration-300 {
|
1946
|
-
animation-duration: 300ms;
|
1947
|
-
}
|
1948
|
-
|
1949
|
-
.file\:hidden::file-selector-button {
|
1950
|
-
display: none;
|
1951
|
-
}
|
1952
|
-
|
1953
|
-
.placeholder\:text-gray-500::-moz-placeholder {
|
1954
|
-
--tw-text-opacity: 1;
|
1955
|
-
color: rgb(var(--gray-500) / var(--tw-text-opacity, 1));
|
1956
|
-
}
|
1957
|
-
|
1958
|
-
.placeholder\:text-gray-500::placeholder {
|
1959
|
-
--tw-text-opacity: 1;
|
1960
|
-
color: rgb(var(--gray-500) / var(--tw-text-opacity, 1));
|
1961
|
-
}
|
1962
|
-
|
1963
|
-
.placeholder\:text-transparent::-moz-placeholder {
|
1964
|
-
color: transparent;
|
1965
|
-
}
|
1966
|
-
|
1967
|
-
.placeholder\:text-transparent::placeholder {
|
1968
|
-
color: transparent;
|
1969
|
-
}
|
1970
|
-
|
1971
|
-
.invalid\:border-error-600:invalid {
|
1972
|
-
--tw-border-opacity: 1;
|
1973
|
-
border-color: rgb(var(--error-600) / var(--tw-border-opacity, 1));
|
1974
|
-
}
|
1975
|
-
|
1976
|
-
.invalid\:bg-gray-0:invalid {
|
1977
|
-
--tw-bg-opacity: 1;
|
1978
|
-
background-color: rgb(var(--gray-0) / var(--tw-bg-opacity, 1));
|
1979
|
-
}
|
1980
|
-
|
1981
|
-
.hover\:bg-gray-200:hover {
|
1982
|
-
--tw-bg-opacity: 1;
|
1983
|
-
background-color: rgb(var(--gray-200) / var(--tw-bg-opacity, 1));
|
1984
|
-
}
|
1985
|
-
|
1986
|
-
.hover\:bg-gray-50:hover {
|
1987
|
-
--tw-bg-opacity: 1;
|
1988
|
-
background-color: rgb(var(--gray-50) / var(--tw-bg-opacity, 1));
|
1989
|
-
}
|
1990
|
-
|
1991
|
-
.hover\:bg-gray-700:hover {
|
1992
|
-
--tw-bg-opacity: 1;
|
1993
|
-
background-color: rgb(var(--gray-700) / var(--tw-bg-opacity, 1));
|
1994
|
-
}
|
1995
|
-
|
1996
|
-
.hover\:text-gray-500:hover {
|
1997
|
-
--tw-text-opacity: 1;
|
1998
|
-
color: rgb(var(--gray-500) / var(--tw-text-opacity, 1));
|
1999
|
-
}
|
2000
|
-
|
2001
|
-
.focus\:border-error-600:focus {
|
2002
|
-
--tw-border-opacity: 1;
|
2003
|
-
border-color: rgb(var(--error-600) / var(--tw-border-opacity, 1));
|
2004
|
-
}
|
2005
|
-
|
2006
|
-
.focus\:border-gray-300:focus {
|
2007
|
-
--tw-border-opacity: 1;
|
2008
|
-
border-color: rgb(var(--gray-300) / var(--tw-border-opacity, 1));
|
2009
|
-
}
|
2010
|
-
|
2011
|
-
.focus\:bg-gray-0:focus {
|
2012
|
-
--tw-bg-opacity: 1;
|
2013
|
-
background-color: rgb(var(--gray-0) / var(--tw-bg-opacity, 1));
|
2014
|
-
}
|
2015
|
-
|
2016
|
-
.focus\:outline-none:focus {
|
2017
|
-
outline: 2px solid transparent;
|
2018
|
-
outline-offset: 2px;
|
2019
|
-
}
|
2020
|
-
|
2021
|
-
.invalid\:focus\:border-error-600:focus:invalid {
|
2022
|
-
--tw-border-opacity: 1;
|
2023
|
-
border-color: rgb(var(--error-600) / var(--tw-border-opacity, 1));
|
2024
|
-
}
|
2025
|
-
|
2026
|
-
.focus-visible\:outline-none:focus-visible {
|
2027
|
-
outline: 2px solid transparent;
|
2028
|
-
outline-offset: 2px;
|
2029
|
-
}
|
2030
|
-
|
2031
|
-
.active\:bg-gray-200:active {
|
2032
|
-
--tw-bg-opacity: 1;
|
2033
|
-
background-color: rgb(var(--gray-200) / var(--tw-bg-opacity, 1));
|
2034
|
-
}
|
2035
|
-
|
2036
|
-
.active\:bg-gray-50:active {
|
2037
|
-
--tw-bg-opacity: 1;
|
2038
|
-
background-color: rgb(var(--gray-50) / var(--tw-bg-opacity, 1));
|
2039
|
-
}
|
2040
|
-
|
2041
|
-
.active\:bg-gray-700:active {
|
2042
|
-
--tw-bg-opacity: 1;
|
2043
|
-
background-color: rgb(var(--gray-700) / var(--tw-bg-opacity, 1));
|
2044
|
-
}
|
2045
|
-
|
2046
|
-
.disabled\:pointer-events-none:disabled {
|
2047
|
-
pointer-events: none;
|
2048
|
-
}
|
2049
|
-
|
2050
|
-
.disabled\:cursor-not-allowed:disabled {
|
2051
|
-
cursor: not-allowed;
|
2052
|
-
}
|
2053
|
-
|
2054
|
-
.disabled\:border-gray-100:disabled {
|
2055
|
-
--tw-border-opacity: 1;
|
2056
|
-
border-color: rgb(var(--gray-100) / var(--tw-border-opacity, 1));
|
2057
|
-
}
|
2058
|
-
|
2059
|
-
.disabled\:bg-gray-100:disabled {
|
2060
|
-
--tw-bg-opacity: 1;
|
2061
|
-
background-color: rgb(var(--gray-100) / var(--tw-bg-opacity, 1));
|
2062
|
-
}
|
2063
|
-
|
2064
|
-
.disabled\:bg-gray-50:disabled {
|
2065
|
-
--tw-bg-opacity: 1;
|
2066
|
-
background-color: rgb(var(--gray-50) / var(--tw-bg-opacity, 1));
|
2067
|
-
}
|
2068
|
-
|
2069
|
-
.disabled\:text-gray-300:disabled {
|
2070
|
-
--tw-text-opacity: 1;
|
2071
|
-
color: rgb(var(--gray-300) / var(--tw-text-opacity, 1));
|
2072
|
-
}
|
2073
|
-
|
2074
|
-
.disabled\:text-gray-400:disabled {
|
2075
|
-
--tw-text-opacity: 1;
|
2076
|
-
color: rgb(var(--gray-400) / var(--tw-text-opacity, 1));
|
2077
|
-
}
|
2078
|
-
|
2079
|
-
.disabled\:opacity-20:disabled {
|
2080
|
-
opacity: 0.2;
|
2081
|
-
}
|
2082
|
-
|
2083
|
-
.disabled\:opacity-50:disabled {
|
2084
|
-
opacity: 0.5;
|
2085
|
-
}
|
2086
|
-
|
2087
|
-
.disabled\:opacity-90:disabled {
|
2088
|
-
opacity: 0.9;
|
2089
|
-
}
|
2090
|
-
|
2091
|
-
.disabled\:active\:bg-transparent:active:disabled {
|
2092
|
-
background-color: transparent;
|
2093
|
-
}
|
2094
|
-
|
2095
|
-
.group:last-child .group-last\:hidden {
|
2096
|
-
display: none;
|
2097
|
-
}
|
2098
|
-
|
2099
|
-
.group:active .group-active\:bg-gray-50 {
|
2100
|
-
--tw-bg-opacity: 1;
|
2101
|
-
background-color: rgb(var(--gray-50) / var(--tw-bg-opacity, 1));
|
2102
|
-
}
|
2103
|
-
|
2104
|
-
.peer:-moz-placeholder-shown ~ .peer-placeholder-shown\:translate-y-0 {
|
2105
|
-
--tw-translate-y: 0px;
|
2106
|
-
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));
|
2107
|
-
}
|
2108
|
-
|
2109
|
-
.peer:placeholder-shown ~ .peer-placeholder-shown\:translate-y-0 {
|
2110
|
-
--tw-translate-y: 0px;
|
2111
|
-
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));
|
2112
|
-
}
|
2113
|
-
|
2114
|
-
.peer:-moz-placeholder-shown ~ .peer-placeholder-shown\:text-sm {
|
2115
|
-
font-size: 0.9375rem;
|
2116
|
-
}
|
2117
|
-
|
2118
|
-
.peer:placeholder-shown ~ .peer-placeholder-shown\:text-sm {
|
2119
|
-
font-size: 0.9375rem;
|
2120
|
-
}
|
2121
|
-
|
2122
|
-
.peer:focus ~ .peer-focus\:-translate-y-\[0\.6rem\] {
|
2123
|
-
--tw-translate-y: -0.6rem;
|
2124
|
-
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));
|
2125
|
-
}
|
2126
|
-
|
2127
|
-
.peer:focus ~ .peer-focus\:border-gray-300 {
|
2128
|
-
--tw-border-opacity: 1;
|
2129
|
-
border-color: rgb(var(--gray-300) / var(--tw-border-opacity, 1));
|
2130
|
-
}
|
2131
|
-
|
2132
|
-
.peer:focus ~ .peer-focus\:bg-gray-0 {
|
2133
|
-
--tw-bg-opacity: 1;
|
2134
|
-
background-color: rgb(var(--gray-0) / var(--tw-bg-opacity, 1));
|
2135
|
-
}
|
2136
|
-
|
2137
|
-
.peer:focus ~ .peer-focus\:text-xs {
|
2138
|
-
font-size: 0.8125rem;
|
2139
|
-
}
|
2140
|
-
|
2141
|
-
.has-\[\:disabled\]\:opacity-50:has(:disabled) {
|
2142
|
-
opacity: 0.5;
|
2143
|
-
}
|
2144
|
-
|
2145
|
-
.data-\[state\=checked\]\:translate-x-4[data-state="checked"] {
|
2146
|
-
--tw-translate-x: 1rem;
|
2147
|
-
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));
|
2148
|
-
}
|
2149
|
-
|
2150
|
-
.data-\[state\=unchecked\]\:translate-x-0[data-state="unchecked"] {
|
2151
|
-
--tw-translate-x: 0px;
|
2152
|
-
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));
|
2153
|
-
}
|
2154
|
-
|
2155
|
-
.data-\[swipe\=cancel\]\:translate-x-0[data-swipe="cancel"] {
|
2156
|
-
--tw-translate-x: 0px;
|
2157
|
-
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));
|
2158
|
-
}
|
2159
|
-
|
2160
|
-
.data-\[swipe\=end\]\:translate-x-\[var\(--radix-toast-swipe-end-x\)\][data-swipe="end"] {
|
2161
|
-
--tw-translate-x: var(--radix-toast-swipe-end-x);
|
2162
|
-
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));
|
2163
|
-
}
|
2164
|
-
|
2165
|
-
.data-\[swipe\=move\]\:translate-x-\[var\(--radix-toast-swipe-move-x\)\][data-swipe="move"] {
|
2166
|
-
--tw-translate-x: var(--radix-toast-swipe-move-x);
|
2167
|
-
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));
|
2168
|
-
}
|
2169
|
-
|
2170
|
-
.data-\[state\=checked\]\:border-gray-900[data-state="checked"] {
|
2171
|
-
--tw-border-opacity: 1;
|
2172
|
-
border-color: rgb(var(--gray-900) / var(--tw-border-opacity, 1));
|
2173
|
-
}
|
2174
|
-
|
2175
|
-
.data-\[state\=closed\]\:border-gray-100[data-state="closed"] {
|
2176
|
-
--tw-border-opacity: 1;
|
2177
|
-
border-color: rgb(var(--gray-100) / var(--tw-border-opacity, 1));
|
2178
|
-
}
|
2179
|
-
|
2180
|
-
.data-\[state\=unchecked\]\:border-gray-200[data-state="unchecked"] {
|
2181
|
-
--tw-border-opacity: 1;
|
2182
|
-
border-color: rgb(var(--gray-200) / var(--tw-border-opacity, 1));
|
2183
|
-
}
|
2184
|
-
|
2185
|
-
.data-\[state\=unchecked\]\:border-gray-300[data-state="unchecked"] {
|
2186
|
-
--tw-border-opacity: 1;
|
2187
|
-
border-color: rgb(var(--gray-300) / var(--tw-border-opacity, 1));
|
2188
|
-
}
|
2189
|
-
|
2190
|
-
.data-\[state\=checked\]\:bg-gray-900[data-state="checked"] {
|
2191
|
-
--tw-bg-opacity: 1;
|
2192
|
-
background-color: rgb(var(--gray-900) / var(--tw-bg-opacity, 1));
|
2193
|
-
}
|
2194
|
-
|
2195
|
-
.data-\[state\=closed\]\:bg-gray-100[data-state="closed"] {
|
2196
|
-
--tw-bg-opacity: 1;
|
2197
|
-
background-color: rgb(var(--gray-100) / var(--tw-bg-opacity, 1));
|
2198
|
-
}
|
2199
|
-
|
2200
|
-
.data-\[state\=on\]\:bg-gray-100[data-state="on"] {
|
2201
|
-
--tw-bg-opacity: 1;
|
2202
|
-
background-color: rgb(var(--gray-100) / var(--tw-bg-opacity, 1));
|
2203
|
-
}
|
2204
|
-
|
2205
|
-
.data-\[state\=unchecked\]\:bg-gray-300[data-state="unchecked"] {
|
2206
|
-
--tw-bg-opacity: 1;
|
2207
|
-
background-color: rgb(var(--gray-300) / var(--tw-bg-opacity, 1));
|
2208
|
-
}
|
2209
|
-
|
2210
|
-
.data-\[state\=unchecked\]\:bg-transparent[data-state="unchecked"] {
|
2211
|
-
background-color: transparent;
|
2212
|
-
}
|
2213
|
-
|
2214
|
-
.data-\[placeholder\]\:text-gray-500[data-placeholder] {
|
2215
|
-
--tw-text-opacity: 1;
|
2216
|
-
color: rgb(var(--gray-500) / var(--tw-text-opacity, 1));
|
2217
|
-
}
|
2218
|
-
|
2219
|
-
.data-\[state\=on\]\:text-gray-900[data-state="on"] {
|
2220
|
-
--tw-text-opacity: 1;
|
2221
|
-
color: rgb(var(--gray-900) / var(--tw-text-opacity, 1));
|
2222
|
-
}
|
2223
|
-
|
2224
|
-
.data-\[swipe\=move\]\:transition-none[data-swipe="move"] {
|
2225
|
-
transition-property: none;
|
2226
|
-
}
|
2227
|
-
|
2228
|
-
.data-\[state\=open\]\:animate-in[data-state="open"] {
|
2229
|
-
animation-name: enter;
|
2230
|
-
animation-duration: 150ms;
|
2231
|
-
--tw-enter-opacity: initial;
|
2232
|
-
--tw-enter-scale: initial;
|
2233
|
-
--tw-enter-rotate: initial;
|
2234
|
-
--tw-enter-translate-x: initial;
|
2235
|
-
--tw-enter-translate-y: initial;
|
2236
|
-
}
|
2237
|
-
|
2238
|
-
.data-\[state\=closed\]\:animate-out[data-state="closed"] {
|
2239
|
-
animation-name: exit;
|
2240
|
-
animation-duration: 150ms;
|
2241
|
-
--tw-exit-opacity: initial;
|
2242
|
-
--tw-exit-scale: initial;
|
2243
|
-
--tw-exit-rotate: initial;
|
2244
|
-
--tw-exit-translate-x: initial;
|
2245
|
-
--tw-exit-translate-y: initial;
|
2246
|
-
}
|
2247
|
-
|
2248
|
-
.data-\[swipe\=end\]\:animate-out[data-swipe="end"] {
|
2249
|
-
animation-name: exit;
|
2250
|
-
animation-duration: 150ms;
|
2251
|
-
--tw-exit-opacity: initial;
|
2252
|
-
--tw-exit-scale: initial;
|
2253
|
-
--tw-exit-rotate: initial;
|
2254
|
-
--tw-exit-translate-x: initial;
|
2255
|
-
--tw-exit-translate-y: initial;
|
2256
|
-
}
|
2257
|
-
|
2258
|
-
.data-\[state\=closed\]\:fade-out-50[data-state="closed"] {
|
2259
|
-
--tw-exit-opacity: 0.5;
|
2260
|
-
}
|
2261
|
-
|
2262
|
-
.data-\[state\=closed\]\:slide-out-to-top-full[data-state="closed"] {
|
2263
|
-
--tw-exit-translate-y: -100%;
|
2264
|
-
}
|
2265
|
-
|
2266
|
-
.data-\[state\=open\]\:slide-in-from-top-full[data-state="open"] {
|
2267
|
-
--tw-enter-translate-y: -100%;
|
2268
|
-
}
|
2269
|
-
|
2270
|
-
.group[data-state="on"] .group-data-\[state\=on\]\:block {
|
2271
|
-
display: block;
|
2272
|
-
}
|
2273
|
-
|
2274
|
-
.group[data-state="on"] .group-data-\[state\=on\]\:hidden {
|
2275
|
-
display: none;
|
2276
|
-
}
|
2277
|
-
|
2278
|
-
@media (min-width: 768px) {
|
2279
|
-
.md\:grid-cols-\[1fr_2fr\] {
|
2280
|
-
grid-template-columns: 1fr 2fr;
|
2281
|
-
}
|
2282
|
-
}
|
2283
|
-
|
2284
|
-
.\[\&\:has\(\>\*\:nth-child\(2\)\)\]\:grid-cols-2:has(>*:nth-child(2)) {
|
2285
|
-
grid-template-columns: repeat(2, minmax(0, 1fr));
|
2286
|
-
}
|
2287
|
-
|
2288
|
-
.\[\&\>\*\]\:col-span-1>* {
|
2289
|
-
grid-column: span 1 / span 1;
|
2290
|
-
}
|
2291
|
-
|
2292
|
-
.\[\&\>span\:first-of-type\]\:line-clamp-1>span:first-of-type {
|
2293
|
-
overflow: hidden;
|
2294
|
-
display: -webkit-box;
|
2295
|
-
-webkit-box-orient: vertical;
|
2296
|
-
-webkit-line-clamp: 1;
|
2297
|
-
}
|