@multiversx/sdk-dapp-liquidity 1.1.0-alpha.2 → 1.1.0-alpha.21
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 +6 -1
- package/api/getTransactions.d.ts +8 -2
- package/api/getTransactions.js +23 -3
- package/api/getTransactions.mjs +23 -3
- package/api/tests/getChains.spec.js +2 -1
- package/api/tests/getChains.spec.mjs +2 -1
- package/api/tests/getTokens.spec.js +2 -2
- package/api/tests/getTokens.spec.mjs +2 -2
- package/api/tests/getTransactions.spec.js +79 -69
- package/api/tests/getTransactions.spec.mjs +79 -69
- package/constants/index.d.ts +1 -1
- package/constants/index.js +1 -1
- package/constants/index.mjs +1 -1
- package/dto/Chain.dto.d.ts +3 -1
- package/dto/ConfirmRate.dto.d.ts +1 -0
- package/dto/Token.dto.d.ts +7 -2
- package/index.js +44 -16
- package/index.mjs +14 -16
- package/package.json +10 -6
- package/reactjs/components/BridgeForm/BridgeForm.d.ts +3 -1
- package/reactjs/components/BridgeForm/BridgeForm.js +182 -87
- package/reactjs/components/BridgeForm/BridgeForm.mjs +153 -58
- package/reactjs/components/BridgeHistory/BridgeHistory.js +73 -26
- package/reactjs/components/BridgeHistory/BridgeHistory.mjs +68 -21
- package/reactjs/components/Connect/BridgeAccountDisplay.js +2 -5
- package/reactjs/components/Connect/BridgeAccountDisplay.mjs +2 -5
- package/reactjs/components/Connect/CustomConnectButton.js +2 -5
- package/reactjs/components/Connect/CustomConnectButton.mjs +1 -4
- package/reactjs/components/Connect/MvxConnectButton.d.ts +2 -4
- package/reactjs/components/Connect/MvxConnectButton.js +2 -2
- package/reactjs/components/Connect/MvxConnectButton.mjs +2 -2
- package/reactjs/components/Connect/SwitchChainButton.js +2 -6
- package/reactjs/components/Connect/SwitchChainButton.mjs +1 -5
- package/reactjs/components/CopyButton/CopyButton.js +2 -2
- package/reactjs/components/CopyButton/CopyButton.mjs +2 -2
- package/reactjs/components/DisplayAmount/components/AnimateNumber/AnimateNumber.js +5 -5
- package/reactjs/components/Error/Error.d.ts +6 -0
- package/reactjs/components/Error/Error.js +67 -0
- package/reactjs/components/Error/Error.mjs +66 -0
- package/reactjs/components/Error/index.d.ts +1 -0
- package/reactjs/components/Error/index.js +5 -0
- package/reactjs/components/Error/index.mjs +4 -0
- package/reactjs/components/TokenSelector/TokenSelector.d.ts +2 -1
- package/reactjs/components/TokenSelector/TokenSelector.js +17 -9
- package/reactjs/components/TokenSelector/TokenSelector.mjs +13 -5
- package/reactjs/components/TokenSelector/components/ChainSelect/ChainSelect.d.ts +2 -1
- package/reactjs/components/TokenSelector/components/ChainSelect/ChainSelect.js +7 -3
- package/reactjs/components/TokenSelector/components/ChainSelect/ChainSelect.mjs +4 -0
- package/reactjs/components/TokenSelector/components/SelectContent.d.ts +2 -1
- package/reactjs/components/TokenSelector/components/SelectContent.js +12 -9
- package/reactjs/components/TokenSelector/components/SelectContent.mjs +4 -1
- package/reactjs/components/TokenSelector/components/TokenIcon.js +3 -3
- package/reactjs/components/TokenSelector/components/TokenItem.js +9 -9
- package/reactjs/components/TokenSelector/components/TokenItem.mjs +6 -6
- package/reactjs/components/base/MxCard/MxCard.js +2 -2
- package/reactjs/components/base/MxCircleLoader/MxCircleLoader.d.ts +4 -0
- package/reactjs/components/base/MxCircleLoader/MxCircleLoader.js +29 -0
- package/reactjs/components/base/MxCircleLoader/MxCircleLoader.mjs +28 -0
- package/reactjs/components/base/MxCircleLoader/index.d.ts +1 -0
- package/reactjs/components/base/MxCircleLoader/index.js +5 -0
- package/reactjs/components/base/MxCircleLoader/index.mjs +4 -0
- package/reactjs/components/base/MxLink/MxLink.js +2 -2
- package/reactjs/components/base/MxSearch/MxSearch.js +4 -4
- package/reactjs/components/base/MxSlideover/MxSlideover.js +4 -4
- package/reactjs/components/base/MxTooltip/MxTooltip.js +9 -9
- package/reactjs/components/base/MxTooltip/components/TooltipContainer/TooltipContainer.js +2 -2
- package/reactjs/components/index.d.ts +1 -0
- package/reactjs/components/index.js +2 -0
- package/reactjs/components/index.mjs +2 -0
- package/reactjs/context/Web3AppProvider.d.ts +3 -1
- package/reactjs/context/Web3AppProvider.js +7 -5
- package/reactjs/context/Web3AppProvider.mjs +4 -2
- package/reactjs/context/useWeb3App.js +2 -2
- package/reactjs/hooks/index.js +1 -1
- package/reactjs/hooks/index.mjs +1 -1
- package/reactjs/hooks/useAccount.js +1 -5
- package/reactjs/hooks/useAccount.mjs +1 -5
- package/reactjs/hooks/useBalances.d.ts +4 -4
- package/reactjs/hooks/useBalances.js +16 -1
- package/reactjs/hooks/useBalances.mjs +16 -1
- package/reactjs/hooks/useBridgeFormik.js +9 -16
- package/reactjs/hooks/useBridgeFormik.mjs +0 -7
- package/reactjs/hooks/useDebounce.js +3 -3
- package/reactjs/hooks/useFetchBridgeData.d.ts +14 -4
- package/reactjs/hooks/useFetchTokens.d.ts +14 -4
- package/reactjs/hooks/useFetchTokens.js +9 -9
- package/reactjs/hooks/useFetchTokens.mjs +2 -2
- package/reactjs/hooks/useFiatData.d.ts +7 -2
- package/reactjs/hooks/useFiatData.js +6 -6
- package/reactjs/hooks/useFiatData.mjs +1 -1
- package/reactjs/hooks/useGetChainId.js +3 -3
- package/reactjs/hooks/useGetChainId.mjs +1 -1
- package/reactjs/hooks/useResolveTokenChain.js +2 -2
- package/reactjs/hooks/useSendTransactions.js +2 -2
- package/reactjs/hooks/useSignTransaction.d.ts +93 -67
- package/reactjs/hooks/useSignTransaction.js +53 -4
- package/reactjs/hooks/useSignTransaction.mjs +53 -4
- package/reactjs/hooks/validation/useTestHasEnoughFunds.js +3 -3
- package/reactjs/hooks/validation/useTestIsConnected.js +2 -2
- package/reactjs/index.js +44 -16
- package/reactjs/index.mjs +14 -16
- package/reactjs/init/init.d.ts +220 -1
- package/reactjs/init/init.js +34 -10
- package/reactjs/init/init.mjs +31 -7
- package/reactjs/init/tests/init.spec.js +5 -6
- package/reactjs/init/tests/init.spec.mjs +5 -6
- package/reactjs/queries/index.d.ts +0 -1
- package/reactjs/queries/index.js +0 -2
- package/reactjs/queries/index.mjs +1 -3
- package/reactjs/queries/useGetEvmTokensBalances.query.d.ts +8 -3
- package/reactjs/queries/useGetEvmTokensBalances.query.js +15 -18
- package/reactjs/queries/useGetEvmTokensBalances.query.mjs +15 -18
- package/reactjs/queries/useGetHistory.query.d.ts +9 -1
- package/reactjs/queries/useGetHistory.query.js +23 -5
- package/reactjs/queries/useGetHistory.query.mjs +23 -5
- package/reactjs/queries/useGetMvxTokensBalances.query.d.ts +7 -2
- package/reactjs/queries/useGetMvxTokensBalances.query.js +2 -2
- package/reactjs/reexports.d.ts +2 -1
- package/reactjs/reexports.js +41 -13
- package/reactjs/reexports.mjs +11 -13
- package/reactjs/utils/getInitialTokens.d.ts +4 -1
- package/reactjs/utils/getInitialTokens.js +3 -3
- package/reactjs/utils/getInitialTokens.mjs +3 -3
- package/style.css +33 -1730
- package/types/chainType.d.ts +6 -0
- package/types/chainType.js +11 -0
- package/types/chainType.mjs +10 -0
- package/types/transaction.d.ts +28 -0
- package/types/utxo.d.ts +11 -0
- package/types/utxo.js +2 -0
- package/types/utxo.mjs +1 -0
- package/{useBalances-C_69CFoa.mjs → useBalances-Bom1mw1J.mjs} +101 -23
- package/{useBalances-C4YhEYxy.js → useBalances-gZTsFZHe.js} +102 -24
- package/index-BIVnypNe.mjs +0 -108
- package/index-Ben8n3bd.js +0 -58656
- package/index-CnKr4rL1.mjs +0 -91
- package/index-CnuruJNu.js +0 -329
- package/index-DsBh-EBw.js +0 -108
- package/index-iN9APQ6x.mjs +0 -58735
- package/modules/fiat/components/FiatForm/FiatForm.d.ts +0 -9
- package/modules/fiat/components/FiatForm/FiatForm.js +0 -314
- package/modules/fiat/components/FiatForm/FiatForm.mjs +0 -313
- package/modules/fiat/components/FiatForm/components/AmountInput/AmountInput.d.ts +0 -13
- package/modules/fiat/components/FiatForm/components/AmountInput/AmountInput.js +0 -117
- package/modules/fiat/components/FiatForm/components/AmountInput/AmountInput.mjs +0 -116
- package/modules/fiat/components/FiatForm/components/AmountInput/index.d.ts +0 -1
- package/modules/fiat/components/FiatForm/components/AmountInput/index.js +0 -5
- package/modules/fiat/components/FiatForm/components/AmountInput/index.mjs +0 -4
- package/modules/fiat/components/FiatForm/components/RateReloading/RateReloading.d.ts +0 -7
- package/modules/fiat/components/FiatForm/components/RateReloading/RateReloading.js +0 -74
- package/modules/fiat/components/FiatForm/components/RateReloading/RateReloading.mjs +0 -73
- package/modules/fiat/components/FiatForm/components/TokenSelector/TokenSelector.d.ts +0 -14
- package/modules/fiat/components/FiatForm/components/TokenSelector/TokenSelector.js +0 -94
- package/modules/fiat/components/FiatForm/components/TokenSelector/TokenSelector.mjs +0 -93
- package/modules/fiat/components/FiatForm/components/TokenSelector/components/SelectContainer.d.ts +0 -7
- package/modules/fiat/components/FiatForm/components/TokenSelector/components/SelectContainer.js +0 -82
- package/modules/fiat/components/FiatForm/components/TokenSelector/components/SelectContainer.mjs +0 -81
- package/modules/fiat/components/FiatForm/components/TokenSelector/components/SelectContent.d.ts +0 -7
- package/modules/fiat/components/FiatForm/components/TokenSelector/components/SelectContent.js +0 -91
- package/modules/fiat/components/FiatForm/components/TokenSelector/components/SelectContent.mjs +0 -90
- package/modules/fiat/components/FiatForm/components/TokenSelector/components/SelectedOption.d.ts +0 -5
- package/modules/fiat/components/FiatForm/components/TokenSelector/components/SelectedOption.js +0 -30
- package/modules/fiat/components/FiatForm/components/TokenSelector/components/SelectedOption.mjs +0 -29
- package/modules/fiat/components/FiatForm/components/TokenSelector/components/TokenIcon.d.ts +0 -8
- package/modules/fiat/components/FiatForm/components/TokenSelector/components/TokenIcon.js +0 -103
- package/modules/fiat/components/FiatForm/components/TokenSelector/components/TokenIcon.mjs +0 -102
- package/modules/fiat/components/FiatForm/components/TokenSelector/components/TokenItem.d.ts +0 -7
- package/modules/fiat/components/FiatForm/components/TokenSelector/components/TokenItem.js +0 -33
- package/modules/fiat/components/FiatForm/components/TokenSelector/components/TokenItem.mjs +0 -32
- package/modules/fiat/components/FiatForm/components/TokenSelector/components/TokenList.d.ts +0 -7
- package/modules/fiat/components/FiatForm/components/TokenSelector/components/TokenList.js +0 -21
- package/modules/fiat/components/FiatForm/components/TokenSelector/components/TokenList.mjs +0 -20
- package/modules/fiat/components/FiatForm/components/TokenSelector/components/TokenSymbol.d.ts +0 -9
- package/modules/fiat/components/FiatForm/components/TokenSelector/components/TokenSymbol.js +0 -26
- package/modules/fiat/components/FiatForm/components/TokenSelector/components/TokenSymbol.mjs +0 -25
- package/modules/fiat/components/FiatForm/components/TokenSelector/index.d.ts +0 -1
- package/modules/fiat/components/FiatForm/components/TokenSelector/index.js +0 -5
- package/modules/fiat/components/FiatForm/components/TokenSelector/index.mjs +0 -4
- package/modules/fiat/components/FiatForm/index.d.ts +0 -1
- package/modules/fiat/components/FiatForm/index.js +0 -5
- package/modules/fiat/components/FiatForm/index.mjs +0 -4
- package/modules/fiat/components/index.d.ts +0 -1
- package/modules/fiat/components/index.js +0 -5
- package/modules/fiat/components/index.mjs +0 -4
- package/modules/fiat/context/FiatProvider.d.ts +0 -8
- package/modules/fiat/context/FiatProvider.js +0 -24
- package/modules/fiat/context/FiatProvider.mjs +0 -23
- package/modules/fiat/context/queryClient.d.ts +0 -3
- package/modules/fiat/context/queryClient.js +0 -12
- package/modules/fiat/context/queryClient.mjs +0 -11
- package/modules/fiat/context/useFiat.d.ts +0 -1
- package/modules/fiat/context/useFiat.js +0 -13
- package/modules/fiat/context/useFiat.mjs +0 -12
- package/modules/fiat/hooks/index.d.ts +0 -2
- package/modules/fiat/hooks/index.js +0 -7
- package/modules/fiat/hooks/index.mjs +0 -6
- package/modules/fiat/hooks/useFiatData.d.ts +0 -7
- package/modules/fiat/hooks/useFiatData.js +0 -75
- package/modules/fiat/hooks/useFiatData.mjs +0 -74
- package/modules/fiat/hooks/validation/index.d.ts +0 -1
- package/modules/fiat/hooks/validation/index.js +0 -5
- package/modules/fiat/hooks/validation/index.mjs +0 -4
- package/modules/fiat/hooks/validation/useAmountSchema.d.ts +0 -2
- package/modules/fiat/hooks/validation/useAmountSchema.js +0 -27
- package/modules/fiat/hooks/validation/useAmountSchema.mjs +0 -9
- package/modules/fiat/index.d.ts +0 -8
- package/modules/fiat/index.js +0 -22
- package/modules/fiat/index.mjs +0 -21
- package/modules/fiat/init/index.d.ts +0 -2
- package/modules/fiat/init/index.js +0 -5
- package/modules/fiat/init/index.mjs +0 -4
- package/modules/fiat/init/init.d.ts +0 -22
- package/modules/fiat/init/init.js +0 -15
- package/modules/fiat/init/init.mjs +0 -14
- package/modules/fiat/queries/index.d.ts +0 -2
- package/modules/fiat/queries/index.js +0 -7
- package/modules/fiat/queries/index.mjs +0 -6
- package/modules/fiat/queries/useGetRate.mutation.d.ts +0 -6
- package/modules/fiat/queries/useGetRate.mutation.js +0 -20
- package/modules/fiat/queries/useGetRate.mutation.mjs +0 -19
- package/modules/fiat/queries/useGetTokens.query.d.ts +0 -5
- package/modules/fiat/queries/useGetTokens.query.js +0 -33
- package/modules/fiat/queries/useGetTokens.query.mjs +0 -32
- package/react-47kZTyAT.mjs +0 -51
- package/react-B_iI3-1z.mjs +0 -3133
- package/react-BomcNL1v.js +0 -254
- package/react-CqKlu0W0.js +0 -51
- package/react-R_xxu7fN.js +0 -3133
- package/react-cXurUY4Z.mjs +0 -254
- package/reactjs/queries/useGetTokens.query.d.ts +0 -3
- package/reactjs/queries/useGetTokens.query.js +0 -34
- package/reactjs/queries/useGetTokens.query.mjs +0 -33
- package/w3m-modal-Bhg44d6I.js +0 -356
- package/w3m-modal-Br2Ec3MM.mjs +0 -356
package/style.css
CHANGED
|
@@ -752,6 +752,9 @@ video {
|
|
|
752
752
|
.liq-max-w-none{
|
|
753
753
|
max-width: none;
|
|
754
754
|
}
|
|
755
|
+
.liq-max-w-xs{
|
|
756
|
+
max-width: 20rem;
|
|
757
|
+
}
|
|
755
758
|
.\!liq-flex-1{
|
|
756
759
|
flex: 1 1 0% !important;
|
|
757
760
|
}
|
|
@@ -793,6 +796,15 @@ video {
|
|
|
793
796
|
.liq-animate-pulse{
|
|
794
797
|
animation: liq-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
795
798
|
}
|
|
799
|
+
@keyframes liq-spin{
|
|
800
|
+
|
|
801
|
+
to{
|
|
802
|
+
transform: rotate(360deg);
|
|
803
|
+
}
|
|
804
|
+
}
|
|
805
|
+
.liq-animate-spin{
|
|
806
|
+
animation: liq-spin 1s linear infinite;
|
|
807
|
+
}
|
|
796
808
|
.\!liq-cursor-not-allowed{
|
|
797
809
|
cursor: not-allowed !important;
|
|
798
810
|
}
|
|
@@ -858,12 +870,12 @@ video {
|
|
|
858
870
|
text-overflow: ellipsis;
|
|
859
871
|
white-space: nowrap;
|
|
860
872
|
}
|
|
861
|
-
.liq-text-ellipsis{
|
|
862
|
-
text-overflow: ellipsis;
|
|
863
|
-
}
|
|
864
873
|
.liq-whitespace-nowrap{
|
|
865
874
|
white-space: nowrap;
|
|
866
875
|
}
|
|
876
|
+
.liq-text-wrap{
|
|
877
|
+
text-wrap: wrap;
|
|
878
|
+
}
|
|
867
879
|
.\!liq-rounded-lg{
|
|
868
880
|
border-radius: 0.5rem !important;
|
|
869
881
|
}
|
|
@@ -906,6 +918,9 @@ video {
|
|
|
906
918
|
.liq-border-0{
|
|
907
919
|
border-width: 0px;
|
|
908
920
|
}
|
|
921
|
+
.liq-border-4{
|
|
922
|
+
border-width: 4px;
|
|
923
|
+
}
|
|
909
924
|
.liq-border-\[3px\]{
|
|
910
925
|
border-width: 3px;
|
|
911
926
|
}
|
|
@@ -953,6 +968,10 @@ video {
|
|
|
953
968
|
--tw-border-opacity: 1;
|
|
954
969
|
border-color: rgb(59 197 252 / var(--tw-border-opacity, 1));
|
|
955
970
|
}
|
|
971
|
+
.liq-border-t-neutral-850{
|
|
972
|
+
--tw-border-opacity: 1;
|
|
973
|
+
border-top-color: rgb(30 31 37 / var(--tw-border-opacity, 1));
|
|
974
|
+
}
|
|
956
975
|
.\!liq-bg-neutral-750{
|
|
957
976
|
--tw-bg-opacity: 1 !important;
|
|
958
977
|
background-color: rgb(42 44 52 / var(--tw-bg-opacity, 1)) !important;
|
|
@@ -1094,6 +1113,9 @@ video {
|
|
|
1094
1113
|
.liq-bg-opacity-25{
|
|
1095
1114
|
--tw-bg-opacity: 0.25;
|
|
1096
1115
|
}
|
|
1116
|
+
.liq-bg-opacity-40{
|
|
1117
|
+
--tw-bg-opacity: 0.4;
|
|
1118
|
+
}
|
|
1097
1119
|
.liq-bg-opacity-5{
|
|
1098
1120
|
--tw-bg-opacity: 0.05;
|
|
1099
1121
|
}
|
|
@@ -1172,6 +1194,10 @@ video {
|
|
|
1172
1194
|
padding-top: 0.25rem;
|
|
1173
1195
|
padding-bottom: 0.25rem;
|
|
1174
1196
|
}
|
|
1197
|
+
.liq-py-14{
|
|
1198
|
+
padding-top: 3.5rem;
|
|
1199
|
+
padding-bottom: 3.5rem;
|
|
1200
|
+
}
|
|
1175
1201
|
.liq-py-2{
|
|
1176
1202
|
padding-top: 0.5rem;
|
|
1177
1203
|
padding-bottom: 0.5rem;
|
|
@@ -1972,6 +1998,10 @@ video {
|
|
|
1972
1998
|
--tw-shadow-colored: 0 0 #0000;
|
|
1973
1999
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1974
2000
|
}
|
|
2001
|
+
.payment-iframe {
|
|
2002
|
+
height: 475px !important;
|
|
2003
|
+
width: 100% !important;
|
|
2004
|
+
}
|
|
1975
2005
|
.placeholder\:liq-font-medium::-moz-placeholder{
|
|
1976
2006
|
font-weight: 500;
|
|
1977
2007
|
}
|
|
@@ -2138,12 +2168,6 @@ video {
|
|
|
2138
2168
|
--tw-text-opacity: 1;
|
|
2139
2169
|
color: rgb(238 238 241 / var(--tw-text-opacity, 1));
|
|
2140
2170
|
}
|
|
2141
|
-
@media not all and (min-width: 640px){
|
|
2142
|
-
|
|
2143
|
-
.max-sm\:liq-hidden{
|
|
2144
|
-
display: none;
|
|
2145
|
-
}
|
|
2146
|
-
}
|
|
2147
2171
|
@media (min-width: 640px){
|
|
2148
2172
|
|
|
2149
2173
|
.sm\:liq-pb-6{
|
|
@@ -2192,1725 +2216,4 @@ video {
|
|
|
2192
2216
|
.lg\:liq-p-6{
|
|
2193
2217
|
padding: 1.5rem;
|
|
2194
2218
|
}
|
|
2195
|
-
}*, ::before, ::after {
|
|
2196
|
-
--tw-border-spacing-x: 0;
|
|
2197
|
-
--tw-border-spacing-y: 0;
|
|
2198
|
-
--tw-translate-x: 0;
|
|
2199
|
-
--tw-translate-y: 0;
|
|
2200
|
-
--tw-rotate: 0;
|
|
2201
|
-
--tw-skew-x: 0;
|
|
2202
|
-
--tw-skew-y: 0;
|
|
2203
|
-
--tw-scale-x: 1;
|
|
2204
|
-
--tw-scale-y: 1;
|
|
2205
|
-
--tw-pan-x: ;
|
|
2206
|
-
--tw-pan-y: ;
|
|
2207
|
-
--tw-pinch-zoom: ;
|
|
2208
|
-
--tw-scroll-snap-strictness: proximity;
|
|
2209
|
-
--tw-gradient-from-position: ;
|
|
2210
|
-
--tw-gradient-via-position: ;
|
|
2211
|
-
--tw-gradient-to-position: ;
|
|
2212
|
-
--tw-ordinal: ;
|
|
2213
|
-
--tw-slashed-zero: ;
|
|
2214
|
-
--tw-numeric-figure: ;
|
|
2215
|
-
--tw-numeric-spacing: ;
|
|
2216
|
-
--tw-numeric-fraction: ;
|
|
2217
|
-
--tw-ring-inset: ;
|
|
2218
|
-
--tw-ring-offset-width: 0px;
|
|
2219
|
-
--tw-ring-offset-color: #fff;
|
|
2220
|
-
--tw-ring-color: rgb(59 130 246 / 0.5);
|
|
2221
|
-
--tw-ring-offset-shadow: 0 0 #0000;
|
|
2222
|
-
--tw-ring-shadow: 0 0 #0000;
|
|
2223
|
-
--tw-shadow: 0 0 #0000;
|
|
2224
|
-
--tw-shadow-colored: 0 0 #0000;
|
|
2225
|
-
--tw-blur: ;
|
|
2226
|
-
--tw-brightness: ;
|
|
2227
|
-
--tw-contrast: ;
|
|
2228
|
-
--tw-grayscale: ;
|
|
2229
|
-
--tw-hue-rotate: ;
|
|
2230
|
-
--tw-invert: ;
|
|
2231
|
-
--tw-saturate: ;
|
|
2232
|
-
--tw-sepia: ;
|
|
2233
|
-
--tw-drop-shadow: ;
|
|
2234
|
-
--tw-backdrop-blur: ;
|
|
2235
|
-
--tw-backdrop-brightness: ;
|
|
2236
|
-
--tw-backdrop-contrast: ;
|
|
2237
|
-
--tw-backdrop-grayscale: ;
|
|
2238
|
-
--tw-backdrop-hue-rotate: ;
|
|
2239
|
-
--tw-backdrop-invert: ;
|
|
2240
|
-
--tw-backdrop-opacity: ;
|
|
2241
|
-
--tw-backdrop-saturate: ;
|
|
2242
|
-
--tw-backdrop-sepia: ;
|
|
2243
|
-
--tw-contain-size: ;
|
|
2244
|
-
--tw-contain-layout: ;
|
|
2245
|
-
--tw-contain-paint: ;
|
|
2246
|
-
--tw-contain-style: ;
|
|
2247
|
-
}
|
|
2248
|
-
|
|
2249
|
-
::backdrop {
|
|
2250
|
-
--tw-border-spacing-x: 0;
|
|
2251
|
-
--tw-border-spacing-y: 0;
|
|
2252
|
-
--tw-translate-x: 0;
|
|
2253
|
-
--tw-translate-y: 0;
|
|
2254
|
-
--tw-rotate: 0;
|
|
2255
|
-
--tw-skew-x: 0;
|
|
2256
|
-
--tw-skew-y: 0;
|
|
2257
|
-
--tw-scale-x: 1;
|
|
2258
|
-
--tw-scale-y: 1;
|
|
2259
|
-
--tw-pan-x: ;
|
|
2260
|
-
--tw-pan-y: ;
|
|
2261
|
-
--tw-pinch-zoom: ;
|
|
2262
|
-
--tw-scroll-snap-strictness: proximity;
|
|
2263
|
-
--tw-gradient-from-position: ;
|
|
2264
|
-
--tw-gradient-via-position: ;
|
|
2265
|
-
--tw-gradient-to-position: ;
|
|
2266
|
-
--tw-ordinal: ;
|
|
2267
|
-
--tw-slashed-zero: ;
|
|
2268
|
-
--tw-numeric-figure: ;
|
|
2269
|
-
--tw-numeric-spacing: ;
|
|
2270
|
-
--tw-numeric-fraction: ;
|
|
2271
|
-
--tw-ring-inset: ;
|
|
2272
|
-
--tw-ring-offset-width: 0px;
|
|
2273
|
-
--tw-ring-offset-color: #fff;
|
|
2274
|
-
--tw-ring-color: rgb(59 130 246 / 0.5);
|
|
2275
|
-
--tw-ring-offset-shadow: 0 0 #0000;
|
|
2276
|
-
--tw-ring-shadow: 0 0 #0000;
|
|
2277
|
-
--tw-shadow: 0 0 #0000;
|
|
2278
|
-
--tw-shadow-colored: 0 0 #0000;
|
|
2279
|
-
--tw-blur: ;
|
|
2280
|
-
--tw-brightness: ;
|
|
2281
|
-
--tw-contrast: ;
|
|
2282
|
-
--tw-grayscale: ;
|
|
2283
|
-
--tw-hue-rotate: ;
|
|
2284
|
-
--tw-invert: ;
|
|
2285
|
-
--tw-saturate: ;
|
|
2286
|
-
--tw-sepia: ;
|
|
2287
|
-
--tw-drop-shadow: ;
|
|
2288
|
-
--tw-backdrop-blur: ;
|
|
2289
|
-
--tw-backdrop-brightness: ;
|
|
2290
|
-
--tw-backdrop-contrast: ;
|
|
2291
|
-
--tw-backdrop-grayscale: ;
|
|
2292
|
-
--tw-backdrop-hue-rotate: ;
|
|
2293
|
-
--tw-backdrop-invert: ;
|
|
2294
|
-
--tw-backdrop-opacity: ;
|
|
2295
|
-
--tw-backdrop-saturate: ;
|
|
2296
|
-
--tw-backdrop-sepia: ;
|
|
2297
|
-
--tw-contain-size: ;
|
|
2298
|
-
--tw-contain-layout: ;
|
|
2299
|
-
--tw-contain-paint: ;
|
|
2300
|
-
--tw-contain-style: ;
|
|
2301
|
-
}/*
|
|
2302
|
-
! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com
|
|
2303
|
-
*//*
|
|
2304
|
-
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
|
2305
|
-
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
|
|
2306
|
-
*/
|
|
2307
|
-
|
|
2308
|
-
*,
|
|
2309
|
-
::before,
|
|
2310
|
-
::after {
|
|
2311
|
-
box-sizing: border-box; /* 1 */
|
|
2312
|
-
border-width: 0; /* 2 */
|
|
2313
|
-
border-style: solid; /* 2 */
|
|
2314
|
-
border-color: #e5e7eb; /* 2 */
|
|
2315
|
-
}
|
|
2316
|
-
|
|
2317
|
-
::before,
|
|
2318
|
-
::after {
|
|
2319
|
-
--tw-content: '';
|
|
2320
|
-
}
|
|
2321
|
-
|
|
2322
|
-
/*
|
|
2323
|
-
1. Use a consistent sensible line-height in all browsers.
|
|
2324
|
-
2. Prevent adjustments of font size after orientation changes in iOS.
|
|
2325
|
-
3. Use a more readable tab size.
|
|
2326
|
-
4. Use the user's configured `sans` font-family by default.
|
|
2327
|
-
5. Use the user's configured `sans` font-feature-settings by default.
|
|
2328
|
-
6. Use the user's configured `sans` font-variation-settings by default.
|
|
2329
|
-
7. Disable tap highlights on iOS
|
|
2330
|
-
*/
|
|
2331
|
-
|
|
2332
|
-
html,
|
|
2333
|
-
:host {
|
|
2334
|
-
line-height: 1.5; /* 1 */
|
|
2335
|
-
-webkit-text-size-adjust: 100%; /* 2 */
|
|
2336
|
-
-moz-tab-size: 4; /* 3 */
|
|
2337
|
-
-o-tab-size: 4;
|
|
2338
|
-
tab-size: 4; /* 3 */
|
|
2339
|
-
font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
|
|
2340
|
-
font-feature-settings: normal; /* 5 */
|
|
2341
|
-
font-variation-settings: normal; /* 6 */
|
|
2342
|
-
-webkit-tap-highlight-color: transparent; /* 7 */
|
|
2343
|
-
}
|
|
2344
|
-
|
|
2345
|
-
/*
|
|
2346
|
-
1. Remove the margin in all browsers.
|
|
2347
|
-
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
|
|
2348
|
-
*/
|
|
2349
|
-
|
|
2350
|
-
body {
|
|
2351
|
-
margin: 0; /* 1 */
|
|
2352
|
-
line-height: inherit; /* 2 */
|
|
2353
|
-
}
|
|
2354
|
-
|
|
2355
|
-
/*
|
|
2356
|
-
1. Add the correct height in Firefox.
|
|
2357
|
-
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
|
|
2358
|
-
3. Ensure horizontal rules are visible by default.
|
|
2359
|
-
*/
|
|
2360
|
-
|
|
2361
|
-
hr {
|
|
2362
|
-
height: 0; /* 1 */
|
|
2363
|
-
color: inherit; /* 2 */
|
|
2364
|
-
border-top-width: 1px; /* 3 */
|
|
2365
|
-
}
|
|
2366
|
-
|
|
2367
|
-
/*
|
|
2368
|
-
Add the correct text decoration in Chrome, Edge, and Safari.
|
|
2369
|
-
*/
|
|
2370
|
-
|
|
2371
|
-
abbr:where([title]) {
|
|
2372
|
-
-webkit-text-decoration: underline dotted;
|
|
2373
|
-
text-decoration: underline dotted;
|
|
2374
|
-
}
|
|
2375
|
-
|
|
2376
|
-
/*
|
|
2377
|
-
Remove the default font size and weight for headings.
|
|
2378
|
-
*/
|
|
2379
|
-
|
|
2380
|
-
h1,
|
|
2381
|
-
h2,
|
|
2382
|
-
h3,
|
|
2383
|
-
h4,
|
|
2384
|
-
h5,
|
|
2385
|
-
h6 {
|
|
2386
|
-
font-size: inherit;
|
|
2387
|
-
font-weight: inherit;
|
|
2388
|
-
}
|
|
2389
|
-
|
|
2390
|
-
/*
|
|
2391
|
-
Reset links to optimize for opt-in styling instead of opt-out.
|
|
2392
|
-
*/
|
|
2393
|
-
|
|
2394
|
-
a {
|
|
2395
|
-
color: inherit;
|
|
2396
|
-
text-decoration: inherit;
|
|
2397
|
-
}
|
|
2398
|
-
|
|
2399
|
-
/*
|
|
2400
|
-
Add the correct font weight in Edge and Safari.
|
|
2401
|
-
*/
|
|
2402
|
-
|
|
2403
|
-
b,
|
|
2404
|
-
strong {
|
|
2405
|
-
font-weight: bolder;
|
|
2406
|
-
}
|
|
2407
|
-
|
|
2408
|
-
/*
|
|
2409
|
-
1. Use the user's configured `mono` font-family by default.
|
|
2410
|
-
2. Use the user's configured `mono` font-feature-settings by default.
|
|
2411
|
-
3. Use the user's configured `mono` font-variation-settings by default.
|
|
2412
|
-
4. Correct the odd `em` font sizing in all browsers.
|
|
2413
|
-
*/
|
|
2414
|
-
|
|
2415
|
-
code,
|
|
2416
|
-
kbd,
|
|
2417
|
-
samp,
|
|
2418
|
-
pre {
|
|
2419
|
-
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
|
|
2420
|
-
font-feature-settings: normal; /* 2 */
|
|
2421
|
-
font-variation-settings: normal; /* 3 */
|
|
2422
|
-
font-size: 1em; /* 4 */
|
|
2423
|
-
}
|
|
2424
|
-
|
|
2425
|
-
/*
|
|
2426
|
-
Add the correct font size in all browsers.
|
|
2427
|
-
*/
|
|
2428
|
-
|
|
2429
|
-
small {
|
|
2430
|
-
font-size: 80%;
|
|
2431
|
-
}
|
|
2432
|
-
|
|
2433
|
-
/*
|
|
2434
|
-
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
|
|
2435
|
-
*/
|
|
2436
|
-
|
|
2437
|
-
sub,
|
|
2438
|
-
sup {
|
|
2439
|
-
font-size: 75%;
|
|
2440
|
-
line-height: 0;
|
|
2441
|
-
position: relative;
|
|
2442
|
-
vertical-align: baseline;
|
|
2443
|
-
}
|
|
2444
|
-
|
|
2445
|
-
sub {
|
|
2446
|
-
bottom: -0.25em;
|
|
2447
|
-
}
|
|
2448
|
-
|
|
2449
|
-
sup {
|
|
2450
|
-
top: -0.5em;
|
|
2451
|
-
}
|
|
2452
|
-
|
|
2453
|
-
/*
|
|
2454
|
-
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)
|
|
2455
|
-
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)
|
|
2456
|
-
3. Remove gaps between table borders by default.
|
|
2457
|
-
*/
|
|
2458
|
-
|
|
2459
|
-
table {
|
|
2460
|
-
text-indent: 0; /* 1 */
|
|
2461
|
-
border-color: inherit; /* 2 */
|
|
2462
|
-
border-collapse: collapse; /* 3 */
|
|
2463
|
-
}
|
|
2464
|
-
|
|
2465
|
-
/*
|
|
2466
|
-
1. Change the font styles in all browsers.
|
|
2467
|
-
2. Remove the margin in Firefox and Safari.
|
|
2468
|
-
3. Remove default padding in all browsers.
|
|
2469
|
-
*/
|
|
2470
|
-
|
|
2471
|
-
button,
|
|
2472
|
-
input,
|
|
2473
|
-
optgroup,
|
|
2474
|
-
select,
|
|
2475
|
-
textarea {
|
|
2476
|
-
font-family: inherit; /* 1 */
|
|
2477
|
-
font-feature-settings: inherit; /* 1 */
|
|
2478
|
-
font-variation-settings: inherit; /* 1 */
|
|
2479
|
-
font-size: 100%; /* 1 */
|
|
2480
|
-
font-weight: inherit; /* 1 */
|
|
2481
|
-
line-height: inherit; /* 1 */
|
|
2482
|
-
letter-spacing: inherit; /* 1 */
|
|
2483
|
-
color: inherit; /* 1 */
|
|
2484
|
-
margin: 0; /* 2 */
|
|
2485
|
-
padding: 0; /* 3 */
|
|
2486
|
-
}
|
|
2487
|
-
|
|
2488
|
-
/*
|
|
2489
|
-
Remove the inheritance of text transform in Edge and Firefox.
|
|
2490
|
-
*/
|
|
2491
|
-
|
|
2492
|
-
button,
|
|
2493
|
-
select {
|
|
2494
|
-
text-transform: none;
|
|
2495
|
-
}
|
|
2496
|
-
|
|
2497
|
-
/*
|
|
2498
|
-
1. Correct the inability to style clickable types in iOS and Safari.
|
|
2499
|
-
2. Remove default button styles.
|
|
2500
|
-
*/
|
|
2501
|
-
|
|
2502
|
-
button,
|
|
2503
|
-
input:where([type='button']),
|
|
2504
|
-
input:where([type='reset']),
|
|
2505
|
-
input:where([type='submit']) {
|
|
2506
|
-
-webkit-appearance: button; /* 1 */
|
|
2507
|
-
background-color: transparent; /* 2 */
|
|
2508
|
-
background-image: none; /* 2 */
|
|
2509
|
-
}
|
|
2510
|
-
|
|
2511
|
-
/*
|
|
2512
|
-
Use the modern Firefox focus style for all focusable elements.
|
|
2513
|
-
*/
|
|
2514
|
-
|
|
2515
|
-
:-moz-focusring {
|
|
2516
|
-
outline: auto;
|
|
2517
|
-
}
|
|
2518
|
-
|
|
2519
|
-
/*
|
|
2520
|
-
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
|
|
2521
|
-
*/
|
|
2522
|
-
|
|
2523
|
-
:-moz-ui-invalid {
|
|
2524
|
-
box-shadow: none;
|
|
2525
|
-
}
|
|
2526
|
-
|
|
2527
|
-
/*
|
|
2528
|
-
Add the correct vertical alignment in Chrome and Firefox.
|
|
2529
|
-
*/
|
|
2530
|
-
|
|
2531
|
-
progress {
|
|
2532
|
-
vertical-align: baseline;
|
|
2533
|
-
}
|
|
2534
|
-
|
|
2535
|
-
/*
|
|
2536
|
-
Correct the cursor style of increment and decrement buttons in Safari.
|
|
2537
|
-
*/
|
|
2538
|
-
|
|
2539
|
-
::-webkit-inner-spin-button,
|
|
2540
|
-
::-webkit-outer-spin-button {
|
|
2541
|
-
height: auto;
|
|
2542
|
-
}
|
|
2543
|
-
|
|
2544
|
-
/*
|
|
2545
|
-
1. Correct the odd appearance in Chrome and Safari.
|
|
2546
|
-
2. Correct the outline style in Safari.
|
|
2547
|
-
*/
|
|
2548
|
-
|
|
2549
|
-
[type='search'] {
|
|
2550
|
-
-webkit-appearance: textfield; /* 1 */
|
|
2551
|
-
outline-offset: -2px; /* 2 */
|
|
2552
|
-
}
|
|
2553
|
-
|
|
2554
|
-
/*
|
|
2555
|
-
Remove the inner padding in Chrome and Safari on macOS.
|
|
2556
|
-
*/
|
|
2557
|
-
|
|
2558
|
-
::-webkit-search-decoration {
|
|
2559
|
-
-webkit-appearance: none;
|
|
2560
|
-
}
|
|
2561
|
-
|
|
2562
|
-
/*
|
|
2563
|
-
1. Correct the inability to style clickable types in iOS and Safari.
|
|
2564
|
-
2. Change font properties to `inherit` in Safari.
|
|
2565
|
-
*/
|
|
2566
|
-
|
|
2567
|
-
::-webkit-file-upload-button {
|
|
2568
|
-
-webkit-appearance: button; /* 1 */
|
|
2569
|
-
font: inherit; /* 2 */
|
|
2570
|
-
}
|
|
2571
|
-
|
|
2572
|
-
/*
|
|
2573
|
-
Add the correct display in Chrome and Safari.
|
|
2574
|
-
*/
|
|
2575
|
-
|
|
2576
|
-
summary {
|
|
2577
|
-
display: list-item;
|
|
2578
|
-
}
|
|
2579
|
-
|
|
2580
|
-
/*
|
|
2581
|
-
Removes the default spacing and border for appropriate elements.
|
|
2582
|
-
*/
|
|
2583
|
-
|
|
2584
|
-
blockquote,
|
|
2585
|
-
dl,
|
|
2586
|
-
dd,
|
|
2587
|
-
h1,
|
|
2588
|
-
h2,
|
|
2589
|
-
h3,
|
|
2590
|
-
h4,
|
|
2591
|
-
h5,
|
|
2592
|
-
h6,
|
|
2593
|
-
hr,
|
|
2594
|
-
figure,
|
|
2595
|
-
p,
|
|
2596
|
-
pre {
|
|
2597
|
-
margin: 0;
|
|
2598
|
-
}
|
|
2599
|
-
|
|
2600
|
-
fieldset {
|
|
2601
|
-
margin: 0;
|
|
2602
|
-
padding: 0;
|
|
2603
|
-
}
|
|
2604
|
-
|
|
2605
|
-
legend {
|
|
2606
|
-
padding: 0;
|
|
2607
|
-
}
|
|
2608
|
-
|
|
2609
|
-
ol,
|
|
2610
|
-
ul,
|
|
2611
|
-
menu {
|
|
2612
|
-
list-style: none;
|
|
2613
|
-
margin: 0;
|
|
2614
|
-
padding: 0;
|
|
2615
|
-
}
|
|
2616
|
-
|
|
2617
|
-
/*
|
|
2618
|
-
Reset default styling for dialogs.
|
|
2619
|
-
*/
|
|
2620
|
-
dialog {
|
|
2621
|
-
padding: 0;
|
|
2622
|
-
}
|
|
2623
|
-
|
|
2624
|
-
/*
|
|
2625
|
-
Prevent resizing textareas horizontally by default.
|
|
2626
|
-
*/
|
|
2627
|
-
|
|
2628
|
-
textarea {
|
|
2629
|
-
resize: vertical;
|
|
2630
|
-
}
|
|
2631
|
-
|
|
2632
|
-
/*
|
|
2633
|
-
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
|
|
2634
|
-
2. Set the default placeholder color to the user's configured gray 400 color.
|
|
2635
|
-
*/
|
|
2636
|
-
|
|
2637
|
-
input::-moz-placeholder, textarea::-moz-placeholder {
|
|
2638
|
-
opacity: 1; /* 1 */
|
|
2639
|
-
color: #9ca3af; /* 2 */
|
|
2640
|
-
}
|
|
2641
|
-
|
|
2642
|
-
input::placeholder,
|
|
2643
|
-
textarea::placeholder {
|
|
2644
|
-
opacity: 1; /* 1 */
|
|
2645
|
-
color: #9ca3af; /* 2 */
|
|
2646
|
-
}
|
|
2647
|
-
|
|
2648
|
-
/*
|
|
2649
|
-
Set the default cursor for buttons.
|
|
2650
|
-
*/
|
|
2651
|
-
|
|
2652
|
-
button,
|
|
2653
|
-
[role="button"] {
|
|
2654
|
-
cursor: pointer;
|
|
2655
|
-
}
|
|
2656
|
-
|
|
2657
|
-
/*
|
|
2658
|
-
Make sure disabled buttons don't get the pointer cursor.
|
|
2659
|
-
*/
|
|
2660
|
-
:disabled {
|
|
2661
|
-
cursor: default;
|
|
2662
|
-
}
|
|
2663
|
-
|
|
2664
|
-
/*
|
|
2665
|
-
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
|
|
2666
|
-
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
|
|
2667
|
-
This can trigger a poorly considered lint error in some tools but is included by design.
|
|
2668
|
-
*/
|
|
2669
|
-
|
|
2670
|
-
img,
|
|
2671
|
-
svg,
|
|
2672
|
-
video,
|
|
2673
|
-
canvas,
|
|
2674
|
-
audio,
|
|
2675
|
-
iframe,
|
|
2676
|
-
embed,
|
|
2677
|
-
object {
|
|
2678
|
-
display: block; /* 1 */
|
|
2679
|
-
vertical-align: middle; /* 2 */
|
|
2680
|
-
}
|
|
2681
|
-
|
|
2682
|
-
/*
|
|
2683
|
-
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
|
|
2684
|
-
*/
|
|
2685
|
-
|
|
2686
|
-
img,
|
|
2687
|
-
video {
|
|
2688
|
-
max-width: 100%;
|
|
2689
|
-
height: auto;
|
|
2690
|
-
}
|
|
2691
|
-
|
|
2692
|
-
/* Make elements with the HTML hidden attribute stay hidden by default */
|
|
2693
|
-
[hidden]:where(:not([hidden="until-found"])) {
|
|
2694
|
-
display: none;
|
|
2695
|
-
}
|
|
2696
|
-
.liq-pointer-events-none {
|
|
2697
|
-
pointer-events: none;
|
|
2698
|
-
}
|
|
2699
|
-
.\!liq-pointer-events-auto {
|
|
2700
|
-
pointer-events: auto !important;
|
|
2701
|
-
}
|
|
2702
|
-
.liq-pointer-events-auto {
|
|
2703
|
-
pointer-events: auto;
|
|
2704
|
-
}
|
|
2705
|
-
.liq-fixed {
|
|
2706
|
-
position: fixed;
|
|
2707
|
-
}
|
|
2708
|
-
.liq-absolute {
|
|
2709
|
-
position: absolute;
|
|
2710
|
-
}
|
|
2711
|
-
.\!liq-relative {
|
|
2712
|
-
position: relative !important;
|
|
2713
|
-
}
|
|
2714
|
-
.liq-relative {
|
|
2715
|
-
position: relative;
|
|
2716
|
-
}
|
|
2717
|
-
.liq-inset-0 {
|
|
2718
|
-
inset: 0px;
|
|
2719
|
-
}
|
|
2720
|
-
.liq-inset-4 {
|
|
2721
|
-
inset: 1rem;
|
|
2722
|
-
}
|
|
2723
|
-
.liq-inset-y-0 {
|
|
2724
|
-
top: 0px;
|
|
2725
|
-
bottom: 0px;
|
|
2726
|
-
}
|
|
2727
|
-
.liq-bottom-\[-2px\] {
|
|
2728
|
-
bottom: -2px;
|
|
2729
|
-
}
|
|
2730
|
-
.liq-bottom-\[2px\] {
|
|
2731
|
-
bottom: 2px;
|
|
2732
|
-
}
|
|
2733
|
-
.liq-left-0 {
|
|
2734
|
-
left: 0px;
|
|
2735
|
-
}
|
|
2736
|
-
.liq-left-3 {
|
|
2737
|
-
left: 0.75rem;
|
|
2738
|
-
}
|
|
2739
|
-
.liq-left-4 {
|
|
2740
|
-
left: 1rem;
|
|
2741
|
-
}
|
|
2742
|
-
.liq-left-6 {
|
|
2743
|
-
left: 1.5rem;
|
|
2744
|
-
}
|
|
2745
|
-
.liq-left-auto {
|
|
2746
|
-
left: auto;
|
|
2747
|
-
}
|
|
2748
|
-
.liq-right-0 {
|
|
2749
|
-
right: 0px;
|
|
2750
|
-
}
|
|
2751
|
-
.liq-right-4 {
|
|
2752
|
-
right: 1rem;
|
|
2753
|
-
}
|
|
2754
|
-
.liq-top-0 {
|
|
2755
|
-
top: 0px;
|
|
2756
|
-
}
|
|
2757
|
-
.liq-top-1\/3 {
|
|
2758
|
-
top: 33.333333%;
|
|
2759
|
-
}
|
|
2760
|
-
.liq-top-12 {
|
|
2761
|
-
top: 3rem;
|
|
2762
|
-
}
|
|
2763
|
-
.\!liq-z-\[15\] {
|
|
2764
|
-
z-index: 15 !important;
|
|
2765
|
-
}
|
|
2766
|
-
.\!liq-z-\[16\] {
|
|
2767
|
-
z-index: 16 !important;
|
|
2768
|
-
}
|
|
2769
|
-
.liq-z-10 {
|
|
2770
|
-
z-index: 10;
|
|
2771
|
-
}
|
|
2772
|
-
.liq-z-20 {
|
|
2773
|
-
z-index: 20;
|
|
2774
|
-
}
|
|
2775
|
-
.liq-z-30 {
|
|
2776
|
-
z-index: 30;
|
|
2777
|
-
}
|
|
2778
|
-
.liq-order-1 {
|
|
2779
|
-
order: 1;
|
|
2780
|
-
}
|
|
2781
|
-
.liq-mx-1 {
|
|
2782
|
-
margin-left: 0.25rem;
|
|
2783
|
-
margin-right: 0.25rem;
|
|
2784
|
-
}
|
|
2785
|
-
.liq-mx-auto {
|
|
2786
|
-
margin-left: auto;
|
|
2787
|
-
margin-right: auto;
|
|
2788
|
-
}
|
|
2789
|
-
.\!liq-mr-2 {
|
|
2790
|
-
margin-right: 0.5rem !important;
|
|
2791
|
-
}
|
|
2792
|
-
.liq-mb-1 {
|
|
2793
|
-
margin-bottom: 0.25rem;
|
|
2794
|
-
}
|
|
2795
|
-
.liq-ml-1 {
|
|
2796
|
-
margin-left: 0.25rem;
|
|
2797
|
-
}
|
|
2798
|
-
.liq-ml-2 {
|
|
2799
|
-
margin-left: 0.5rem;
|
|
2800
|
-
}
|
|
2801
|
-
.liq-ml-\[-5px\] {
|
|
2802
|
-
margin-left: -5px;
|
|
2803
|
-
}
|
|
2804
|
-
.liq-ml-auto {
|
|
2805
|
-
margin-left: auto;
|
|
2806
|
-
}
|
|
2807
|
-
.liq-mr-0 {
|
|
2808
|
-
margin-right: 0px;
|
|
2809
|
-
}
|
|
2810
|
-
.liq-mr-1 {
|
|
2811
|
-
margin-right: 0.25rem;
|
|
2812
|
-
}
|
|
2813
|
-
.liq-mr-2 {
|
|
2814
|
-
margin-right: 0.5rem;
|
|
2815
|
-
}
|
|
2816
|
-
.liq-mt-0\.5 {
|
|
2817
|
-
margin-top: 0.125rem;
|
|
2818
|
-
}
|
|
2819
|
-
.liq-mt-4 {
|
|
2820
|
-
margin-top: 1rem;
|
|
2821
|
-
}
|
|
2822
|
-
.liq-inline-block {
|
|
2823
|
-
display: inline-block;
|
|
2824
|
-
}
|
|
2825
|
-
.\!liq-flex {
|
|
2826
|
-
display: flex !important;
|
|
2827
|
-
}
|
|
2828
|
-
.liq-flex {
|
|
2829
|
-
display: flex;
|
|
2830
|
-
}
|
|
2831
|
-
.\!liq-h-\[26rem\] {
|
|
2832
|
-
height: 26rem !important;
|
|
2833
|
-
}
|
|
2834
|
-
.liq-h-1\/5 {
|
|
2835
|
-
height: 20%;
|
|
2836
|
-
}
|
|
2837
|
-
.liq-h-10 {
|
|
2838
|
-
height: 2.5rem;
|
|
2839
|
-
}
|
|
2840
|
-
.liq-h-12 {
|
|
2841
|
-
height: 3rem;
|
|
2842
|
-
}
|
|
2843
|
-
.liq-h-14 {
|
|
2844
|
-
height: 3.5rem;
|
|
2845
|
-
}
|
|
2846
|
-
.liq-h-16 {
|
|
2847
|
-
height: 4rem;
|
|
2848
|
-
}
|
|
2849
|
-
.liq-h-2\/5 {
|
|
2850
|
-
height: 40%;
|
|
2851
|
-
}
|
|
2852
|
-
.liq-h-3\/5 {
|
|
2853
|
-
height: 60%;
|
|
2854
|
-
}
|
|
2855
|
-
.liq-h-4 {
|
|
2856
|
-
height: 1rem;
|
|
2857
|
-
}
|
|
2858
|
-
.liq-h-5 {
|
|
2859
|
-
height: 1.25rem;
|
|
2860
|
-
}
|
|
2861
|
-
.liq-h-6 {
|
|
2862
|
-
height: 1.5rem;
|
|
2863
|
-
}
|
|
2864
|
-
.liq-h-7 {
|
|
2865
|
-
height: 1.75rem;
|
|
2866
|
-
}
|
|
2867
|
-
.liq-h-8 {
|
|
2868
|
-
height: 2rem;
|
|
2869
|
-
}
|
|
2870
|
-
.liq-h-\[1\.5rem\] {
|
|
2871
|
-
height: 1.5rem;
|
|
2872
|
-
}
|
|
2873
|
-
.liq-h-\[1rem\] {
|
|
2874
|
-
height: 1rem;
|
|
2875
|
-
}
|
|
2876
|
-
.liq-h-full {
|
|
2877
|
-
height: 100%;
|
|
2878
|
-
}
|
|
2879
|
-
.\!liq-max-h-\[22rem\] {
|
|
2880
|
-
max-height: 22rem !important;
|
|
2881
|
-
}
|
|
2882
|
-
.\!liq-min-h-\[26rem\] {
|
|
2883
|
-
min-height: 26rem !important;
|
|
2884
|
-
}
|
|
2885
|
-
.liq-min-h-12 {
|
|
2886
|
-
min-height: 3rem;
|
|
2887
|
-
}
|
|
2888
|
-
.liq-min-h-\[2rem\] {
|
|
2889
|
-
min-height: 2rem;
|
|
2890
|
-
}
|
|
2891
|
-
.liq-w-10 {
|
|
2892
|
-
width: 2.5rem;
|
|
2893
|
-
}
|
|
2894
|
-
.liq-w-12 {
|
|
2895
|
-
width: 3rem;
|
|
2896
|
-
}
|
|
2897
|
-
.liq-w-14 {
|
|
2898
|
-
width: 3.5rem;
|
|
2899
|
-
}
|
|
2900
|
-
.liq-w-16 {
|
|
2901
|
-
width: 4rem;
|
|
2902
|
-
}
|
|
2903
|
-
.liq-w-4 {
|
|
2904
|
-
width: 1rem;
|
|
2905
|
-
}
|
|
2906
|
-
.liq-w-40 {
|
|
2907
|
-
width: 10rem;
|
|
2908
|
-
}
|
|
2909
|
-
.liq-w-5 {
|
|
2910
|
-
width: 1.25rem;
|
|
2911
|
-
}
|
|
2912
|
-
.liq-w-6 {
|
|
2913
|
-
width: 1.5rem;
|
|
2914
|
-
}
|
|
2915
|
-
.liq-w-7 {
|
|
2916
|
-
width: 1.75rem;
|
|
2917
|
-
}
|
|
2918
|
-
.liq-w-8 {
|
|
2919
|
-
width: 2rem;
|
|
2920
|
-
}
|
|
2921
|
-
.liq-w-\[1\.5rem\] {
|
|
2922
|
-
width: 1.5rem;
|
|
2923
|
-
}
|
|
2924
|
-
.liq-w-\[1rem\] {
|
|
2925
|
-
width: 1rem;
|
|
2926
|
-
}
|
|
2927
|
-
.liq-w-full {
|
|
2928
|
-
width: 100%;
|
|
2929
|
-
}
|
|
2930
|
-
.liq-w-screen {
|
|
2931
|
-
width: 100vw;
|
|
2932
|
-
}
|
|
2933
|
-
.liq-min-w-0 {
|
|
2934
|
-
min-width: 0px;
|
|
2935
|
-
}
|
|
2936
|
-
.liq-max-w-\[10rem\] {
|
|
2937
|
-
max-width: 10rem;
|
|
2938
|
-
}
|
|
2939
|
-
.liq-max-w-fit {
|
|
2940
|
-
max-width: -moz-fit-content;
|
|
2941
|
-
max-width: fit-content;
|
|
2942
|
-
}
|
|
2943
|
-
.liq-max-w-full {
|
|
2944
|
-
max-width: 100%;
|
|
2945
|
-
}
|
|
2946
|
-
.liq-max-w-none {
|
|
2947
|
-
max-width: none;
|
|
2948
|
-
}
|
|
2949
|
-
.\!liq-flex-1 {
|
|
2950
|
-
flex: 1 1 0% !important;
|
|
2951
|
-
}
|
|
2952
|
-
.liq-flex-1 {
|
|
2953
|
-
flex: 1 1 0%;
|
|
2954
|
-
}
|
|
2955
|
-
.liq-flex-shrink-0 {
|
|
2956
|
-
flex-shrink: 0;
|
|
2957
|
-
}
|
|
2958
|
-
.liq-flex-grow {
|
|
2959
|
-
flex-grow: 1;
|
|
2960
|
-
}
|
|
2961
|
-
.liq-translate-y-0 {
|
|
2962
|
-
--tw-translate-y: 0px;
|
|
2963
|
-
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));
|
|
2964
|
-
}
|
|
2965
|
-
.liq-translate-y-full {
|
|
2966
|
-
--tw-translate-y: 100%;
|
|
2967
|
-
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));
|
|
2968
|
-
}
|
|
2969
|
-
.liq-transform {
|
|
2970
|
-
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));
|
|
2971
|
-
}
|
|
2972
|
-
@keyframes liq-pulse {
|
|
2973
|
-
|
|
2974
|
-
50% {
|
|
2975
|
-
opacity: .5;
|
|
2976
|
-
}
|
|
2977
|
-
}
|
|
2978
|
-
.\!liq-animate-pulse {
|
|
2979
|
-
animation: liq-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
|
|
2980
|
-
}
|
|
2981
|
-
@keyframes liq-pulse {
|
|
2982
|
-
|
|
2983
|
-
50% {
|
|
2984
|
-
opacity: .5;
|
|
2985
|
-
}
|
|
2986
|
-
}
|
|
2987
|
-
.liq-animate-pulse {
|
|
2988
|
-
animation: liq-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
2989
|
-
}
|
|
2990
|
-
.\!liq-cursor-not-allowed {
|
|
2991
|
-
cursor: not-allowed !important;
|
|
2992
|
-
}
|
|
2993
|
-
.liq-cursor-default {
|
|
2994
|
-
cursor: default;
|
|
2995
|
-
}
|
|
2996
|
-
.liq-cursor-not-allowed {
|
|
2997
|
-
cursor: not-allowed;
|
|
2998
|
-
}
|
|
2999
|
-
.liq-cursor-pointer {
|
|
3000
|
-
cursor: pointer;
|
|
3001
|
-
}
|
|
3002
|
-
.liq-flex-row {
|
|
3003
|
-
flex-direction: row;
|
|
3004
|
-
}
|
|
3005
|
-
.\!liq-flex-col {
|
|
3006
|
-
flex-direction: column !important;
|
|
3007
|
-
}
|
|
3008
|
-
.liq-flex-col {
|
|
3009
|
-
flex-direction: column;
|
|
3010
|
-
}
|
|
3011
|
-
.liq-items-end {
|
|
3012
|
-
align-items: flex-end;
|
|
3013
|
-
}
|
|
3014
|
-
.liq-items-center {
|
|
3015
|
-
align-items: center;
|
|
3016
|
-
}
|
|
3017
|
-
.liq-justify-center {
|
|
3018
|
-
justify-content: center;
|
|
3019
|
-
}
|
|
3020
|
-
.liq-justify-between {
|
|
3021
|
-
justify-content: space-between;
|
|
3022
|
-
}
|
|
3023
|
-
.\!liq-gap-1 {
|
|
3024
|
-
gap: 0.25rem !important;
|
|
3025
|
-
}
|
|
3026
|
-
.liq-gap-1 {
|
|
3027
|
-
gap: 0.25rem;
|
|
3028
|
-
}
|
|
3029
|
-
.liq-gap-2 {
|
|
3030
|
-
gap: 0.5rem;
|
|
3031
|
-
}
|
|
3032
|
-
.liq-gap-3 {
|
|
3033
|
-
gap: 0.75rem;
|
|
3034
|
-
}
|
|
3035
|
-
.liq-gap-4 {
|
|
3036
|
-
gap: 1rem;
|
|
3037
|
-
}
|
|
3038
|
-
.liq-gap-8 {
|
|
3039
|
-
gap: 2rem;
|
|
3040
|
-
}
|
|
3041
|
-
.liq-self-end {
|
|
3042
|
-
align-self: flex-end;
|
|
3043
|
-
}
|
|
3044
|
-
.liq-overflow-hidden {
|
|
3045
|
-
overflow: hidden;
|
|
3046
|
-
}
|
|
3047
|
-
.liq-overflow-y-scroll {
|
|
3048
|
-
overflow-y: scroll;
|
|
3049
|
-
}
|
|
3050
|
-
.liq-truncate {
|
|
3051
|
-
overflow: hidden;
|
|
3052
|
-
text-overflow: ellipsis;
|
|
3053
|
-
white-space: nowrap;
|
|
3054
|
-
}
|
|
3055
|
-
.liq-text-ellipsis {
|
|
3056
|
-
text-overflow: ellipsis;
|
|
3057
|
-
}
|
|
3058
|
-
.liq-whitespace-nowrap {
|
|
3059
|
-
white-space: nowrap;
|
|
3060
|
-
}
|
|
3061
|
-
.\!liq-rounded-lg {
|
|
3062
|
-
border-radius: 0.5rem !important;
|
|
3063
|
-
}
|
|
3064
|
-
.liq-rounded-2xl {
|
|
3065
|
-
border-radius: 1rem;
|
|
3066
|
-
}
|
|
3067
|
-
.liq-rounded-3xl {
|
|
3068
|
-
border-radius: 1.5rem;
|
|
3069
|
-
}
|
|
3070
|
-
.liq-rounded-full {
|
|
3071
|
-
border-radius: 9999px;
|
|
3072
|
-
}
|
|
3073
|
-
.liq-rounded-lg {
|
|
3074
|
-
border-radius: 0.5rem;
|
|
3075
|
-
}
|
|
3076
|
-
.liq-rounded-none {
|
|
3077
|
-
border-radius: 0px;
|
|
3078
|
-
}
|
|
3079
|
-
.liq-rounded-sm {
|
|
3080
|
-
border-radius: 0.125rem;
|
|
3081
|
-
}
|
|
3082
|
-
.liq-rounded-xl {
|
|
3083
|
-
border-radius: 0.75rem;
|
|
3084
|
-
}
|
|
3085
|
-
.liq-rounded-e-lg {
|
|
3086
|
-
border-start-end-radius: 0.5rem;
|
|
3087
|
-
border-end-end-radius: 0.5rem;
|
|
3088
|
-
}
|
|
3089
|
-
.liq-rounded-s-3xl {
|
|
3090
|
-
border-start-start-radius: 1.5rem;
|
|
3091
|
-
border-end-start-radius: 1.5rem;
|
|
3092
|
-
}
|
|
3093
|
-
.liq-rounded-t-2xl {
|
|
3094
|
-
border-top-left-radius: 1rem;
|
|
3095
|
-
border-top-right-radius: 1rem;
|
|
3096
|
-
}
|
|
3097
|
-
.liq-border {
|
|
3098
|
-
border-width: 1px;
|
|
3099
|
-
}
|
|
3100
|
-
.liq-border-0 {
|
|
3101
|
-
border-width: 0px;
|
|
3102
|
-
}
|
|
3103
|
-
.liq-border-\[3px\] {
|
|
3104
|
-
border-width: 3px;
|
|
3105
|
-
}
|
|
3106
|
-
.liq-border-b {
|
|
3107
|
-
border-bottom-width: 1px;
|
|
3108
|
-
}
|
|
3109
|
-
.liq-border-t {
|
|
3110
|
-
border-top-width: 1px;
|
|
3111
|
-
}
|
|
3112
|
-
.liq-border-dashed {
|
|
3113
|
-
border-style: dashed;
|
|
3114
|
-
}
|
|
3115
|
-
.liq-border-none {
|
|
3116
|
-
border-style: none;
|
|
3117
|
-
}
|
|
3118
|
-
.liq-border-neutral-200 {
|
|
3119
|
-
--tw-border-opacity: 1;
|
|
3120
|
-
border-color: rgb(205 208 219 / var(--tw-border-opacity, 1));
|
|
3121
|
-
}
|
|
3122
|
-
.liq-border-neutral-500 {
|
|
3123
|
-
--tw-border-opacity: 1;
|
|
3124
|
-
border-color: rgb(96 98 109 / var(--tw-border-opacity, 1));
|
|
3125
|
-
}
|
|
3126
|
-
.liq-border-neutral-750 {
|
|
3127
|
-
--tw-border-opacity: 1;
|
|
3128
|
-
border-color: rgb(42 44 52 / var(--tw-border-opacity, 1));
|
|
3129
|
-
}
|
|
3130
|
-
.liq-border-neutral-800 {
|
|
3131
|
-
--tw-border-opacity: 1;
|
|
3132
|
-
border-color: rgb(35 36 43 / var(--tw-border-opacity, 1));
|
|
3133
|
-
}
|
|
3134
|
-
.liq-border-neutral-850 {
|
|
3135
|
-
--tw-border-opacity: 1;
|
|
3136
|
-
border-color: rgb(30 31 37 / var(--tw-border-opacity, 1));
|
|
3137
|
-
}
|
|
3138
|
-
.liq-border-primary-200 {
|
|
3139
|
-
--tw-border-opacity: 1;
|
|
3140
|
-
border-color: rgb(165 230 254 / var(--tw-border-opacity, 1));
|
|
3141
|
-
}
|
|
3142
|
-
.liq-border-primary-300 {
|
|
3143
|
-
--tw-border-opacity: 1;
|
|
3144
|
-
border-color: rgb(119 220 253 / var(--tw-border-opacity, 1));
|
|
3145
|
-
}
|
|
3146
|
-
.liq-border-primary-400 {
|
|
3147
|
-
--tw-border-opacity: 1;
|
|
3148
|
-
border-color: rgb(59 197 252 / var(--tw-border-opacity, 1));
|
|
3149
|
-
}
|
|
3150
|
-
.\!liq-bg-neutral-750 {
|
|
3151
|
-
--tw-bg-opacity: 1 !important;
|
|
3152
|
-
background-color: rgb(42 44 52 / var(--tw-bg-opacity, 1)) !important;
|
|
3153
|
-
}
|
|
3154
|
-
.\!liq-bg-neutral-850 {
|
|
3155
|
-
--tw-bg-opacity: 1 !important;
|
|
3156
|
-
background-color: rgb(30 31 37 / var(--tw-bg-opacity, 1)) !important;
|
|
3157
|
-
}
|
|
3158
|
-
.\!liq-bg-transparent {
|
|
3159
|
-
background-color: transparent !important;
|
|
3160
|
-
}
|
|
3161
|
-
.liq-bg-black {
|
|
3162
|
-
--tw-bg-opacity: 1;
|
|
3163
|
-
background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
|
|
3164
|
-
}
|
|
3165
|
-
.liq-bg-danger {
|
|
3166
|
-
--tw-bg-opacity: 1;
|
|
3167
|
-
background-color: rgb(248 113 113 / var(--tw-bg-opacity, 1));
|
|
3168
|
-
}
|
|
3169
|
-
.liq-bg-danger-300 {
|
|
3170
|
-
--tw-bg-opacity: 1;
|
|
3171
|
-
background-color: rgb(252 165 165 / var(--tw-bg-opacity, 1));
|
|
3172
|
-
}
|
|
3173
|
-
.liq-bg-danger-500 {
|
|
3174
|
-
--tw-bg-opacity: 1;
|
|
3175
|
-
background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
|
|
3176
|
-
}
|
|
3177
|
-
.liq-bg-danger-600 {
|
|
3178
|
-
--tw-bg-opacity: 1;
|
|
3179
|
-
background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
|
|
3180
|
-
}
|
|
3181
|
-
.liq-bg-neutral-100 {
|
|
3182
|
-
--tw-bg-opacity: 1;
|
|
3183
|
-
background-color: rgb(225 226 232 / var(--tw-bg-opacity, 1));
|
|
3184
|
-
}
|
|
3185
|
-
.liq-bg-neutral-300 {
|
|
3186
|
-
--tw-bg-opacity: 1;
|
|
3187
|
-
background-color: rgb(145 149 163 / var(--tw-bg-opacity, 1));
|
|
3188
|
-
}
|
|
3189
|
-
.liq-bg-neutral-400 {
|
|
3190
|
-
--tw-bg-opacity: 1;
|
|
3191
|
-
background-color: rgb(117 121 133 / var(--tw-bg-opacity, 1));
|
|
3192
|
-
}
|
|
3193
|
-
.liq-bg-neutral-50 {
|
|
3194
|
-
--tw-bg-opacity: 1;
|
|
3195
|
-
background-color: rgb(238 238 241 / var(--tw-bg-opacity, 1));
|
|
3196
|
-
}
|
|
3197
|
-
.liq-bg-neutral-500 {
|
|
3198
|
-
--tw-bg-opacity: 1;
|
|
3199
|
-
background-color: rgb(96 98 109 / var(--tw-bg-opacity, 1));
|
|
3200
|
-
}
|
|
3201
|
-
.liq-bg-neutral-600 {
|
|
3202
|
-
--tw-bg-opacity: 1;
|
|
3203
|
-
background-color: rgb(79 81 90 / var(--tw-bg-opacity, 1));
|
|
3204
|
-
}
|
|
3205
|
-
.liq-bg-neutral-650 {
|
|
3206
|
-
--tw-bg-opacity: 1;
|
|
3207
|
-
background-color: rgb(70 72 83 / var(--tw-bg-opacity, 1));
|
|
3208
|
-
}
|
|
3209
|
-
.liq-bg-neutral-650\/50 {
|
|
3210
|
-
background-color: rgb(70 72 83 / 0.5);
|
|
3211
|
-
}
|
|
3212
|
-
.liq-bg-neutral-700 {
|
|
3213
|
-
--tw-bg-opacity: 1;
|
|
3214
|
-
background-color: rgb(59 61 72 / var(--tw-bg-opacity, 1));
|
|
3215
|
-
}
|
|
3216
|
-
.liq-bg-neutral-750 {
|
|
3217
|
-
--tw-bg-opacity: 1;
|
|
3218
|
-
background-color: rgb(42 44 52 / var(--tw-bg-opacity, 1));
|
|
3219
|
-
}
|
|
3220
|
-
.liq-bg-neutral-750\/50 {
|
|
3221
|
-
background-color: rgb(42 44 52 / 0.5);
|
|
3222
|
-
}
|
|
3223
|
-
.liq-bg-neutral-800 {
|
|
3224
|
-
--tw-bg-opacity: 1;
|
|
3225
|
-
background-color: rgb(35 36 43 / var(--tw-bg-opacity, 1));
|
|
3226
|
-
}
|
|
3227
|
-
.liq-bg-neutral-800\/50 {
|
|
3228
|
-
background-color: rgb(35 36 43 / 0.5);
|
|
3229
|
-
}
|
|
3230
|
-
.liq-bg-neutral-850 {
|
|
3231
|
-
--tw-bg-opacity: 1;
|
|
3232
|
-
background-color: rgb(30 31 37 / var(--tw-bg-opacity, 1));
|
|
3233
|
-
}
|
|
3234
|
-
.liq-bg-neutral-850\/50 {
|
|
3235
|
-
background-color: rgb(30 31 37 / 0.5);
|
|
3236
|
-
}
|
|
3237
|
-
.liq-bg-neutral-900 {
|
|
3238
|
-
--tw-bg-opacity: 1;
|
|
3239
|
-
background-color: rgb(20 21 26 / var(--tw-bg-opacity, 1));
|
|
3240
|
-
}
|
|
3241
|
-
.liq-bg-neutral-900\/50 {
|
|
3242
|
-
background-color: rgb(20 21 26 / 0.5);
|
|
3243
|
-
}
|
|
3244
|
-
.liq-bg-primary {
|
|
3245
|
-
--tw-bg-opacity: 1;
|
|
3246
|
-
background-color: rgb(0 124 255 / var(--tw-bg-opacity, 1));
|
|
3247
|
-
}
|
|
3248
|
-
.liq-bg-primary-200 {
|
|
3249
|
-
--tw-bg-opacity: 1;
|
|
3250
|
-
background-color: rgb(165 230 254 / var(--tw-bg-opacity, 1));
|
|
3251
|
-
}
|
|
3252
|
-
.liq-bg-primary-300 {
|
|
3253
|
-
--tw-bg-opacity: 1;
|
|
3254
|
-
background-color: rgb(119 220 253 / var(--tw-bg-opacity, 1));
|
|
3255
|
-
}
|
|
3256
|
-
.liq-bg-primary-400 {
|
|
3257
|
-
--tw-bg-opacity: 1;
|
|
3258
|
-
background-color: rgb(59 197 252 / var(--tw-bg-opacity, 1));
|
|
3259
|
-
}
|
|
3260
|
-
.liq-bg-primary-50 {
|
|
3261
|
-
--tw-bg-opacity: 1;
|
|
3262
|
-
background-color: rgb(220 245 254 / var(--tw-bg-opacity, 1));
|
|
3263
|
-
}
|
|
3264
|
-
.liq-bg-primary-700\/80 {
|
|
3265
|
-
background-color: rgb(0 123 255 / 0.8);
|
|
3266
|
-
}
|
|
3267
|
-
.liq-bg-success-600 {
|
|
3268
|
-
--tw-bg-opacity: 1;
|
|
3269
|
-
background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
|
|
3270
|
-
}
|
|
3271
|
-
.liq-bg-success-700 {
|
|
3272
|
-
--tw-bg-opacity: 1;
|
|
3273
|
-
background-color: rgb(21 128 61 / var(--tw-bg-opacity, 1));
|
|
3274
|
-
}
|
|
3275
|
-
.liq-bg-transparent {
|
|
3276
|
-
background-color: transparent;
|
|
3277
|
-
}
|
|
3278
|
-
.liq-bg-warning {
|
|
3279
|
-
--tw-bg-opacity: 1;
|
|
3280
|
-
background-color: rgb(252 211 77 / var(--tw-bg-opacity, 1));
|
|
3281
|
-
}
|
|
3282
|
-
.liq-bg-white\/10 {
|
|
3283
|
-
background-color: rgb(255 255 255 / 0.1);
|
|
3284
|
-
}
|
|
3285
|
-
.liq-bg-white\/5 {
|
|
3286
|
-
background-color: rgb(255 255 255 / 0.05);
|
|
3287
|
-
}
|
|
3288
|
-
.liq-bg-opacity-25 {
|
|
3289
|
-
--tw-bg-opacity: 0.25;
|
|
3290
|
-
}
|
|
3291
|
-
.liq-bg-opacity-5 {
|
|
3292
|
-
--tw-bg-opacity: 0.05;
|
|
3293
|
-
}
|
|
3294
|
-
.liq-bg-opacity-80 {
|
|
3295
|
-
--tw-bg-opacity: 0.8;
|
|
3296
|
-
}
|
|
3297
|
-
.liq-bg-opacity-\[0\.05\] {
|
|
3298
|
-
--tw-bg-opacity: 0.05;
|
|
3299
|
-
}
|
|
3300
|
-
.liq-bg-opacity-\[0\.1\] {
|
|
3301
|
-
--tw-bg-opacity: 0.1;
|
|
3302
|
-
}
|
|
3303
|
-
.\!liq-p-0 {
|
|
3304
|
-
padding: 0px !important;
|
|
3305
|
-
}
|
|
3306
|
-
.\!liq-p-2 {
|
|
3307
|
-
padding: 0.5rem !important;
|
|
3308
|
-
}
|
|
3309
|
-
.\!liq-p-4 {
|
|
3310
|
-
padding: 1rem !important;
|
|
3311
|
-
}
|
|
3312
|
-
.liq-p-0 {
|
|
3313
|
-
padding: 0px;
|
|
3314
|
-
}
|
|
3315
|
-
.liq-p-1 {
|
|
3316
|
-
padding: 0.25rem;
|
|
3317
|
-
}
|
|
3318
|
-
.liq-p-10 {
|
|
3319
|
-
padding: 2.5rem;
|
|
3320
|
-
}
|
|
3321
|
-
.liq-p-2 {
|
|
3322
|
-
padding: 0.5rem;
|
|
3323
|
-
}
|
|
3324
|
-
.liq-p-4 {
|
|
3325
|
-
padding: 1rem;
|
|
3326
|
-
}
|
|
3327
|
-
.liq-p-5 {
|
|
3328
|
-
padding: 1.25rem;
|
|
3329
|
-
}
|
|
3330
|
-
.liq-p-6 {
|
|
3331
|
-
padding: 1.5rem;
|
|
3332
|
-
}
|
|
3333
|
-
.\!liq-px-2 {
|
|
3334
|
-
padding-left: 0.5rem !important;
|
|
3335
|
-
padding-right: 0.5rem !important;
|
|
3336
|
-
}
|
|
3337
|
-
.liq-px-0 {
|
|
3338
|
-
padding-left: 0px;
|
|
3339
|
-
padding-right: 0px;
|
|
3340
|
-
}
|
|
3341
|
-
.liq-px-1 {
|
|
3342
|
-
padding-left: 0.25rem;
|
|
3343
|
-
padding-right: 0.25rem;
|
|
3344
|
-
}
|
|
3345
|
-
.liq-px-11 {
|
|
3346
|
-
padding-left: 2.75rem;
|
|
3347
|
-
padding-right: 2.75rem;
|
|
3348
|
-
}
|
|
3349
|
-
.liq-px-2 {
|
|
3350
|
-
padding-left: 0.5rem;
|
|
3351
|
-
padding-right: 0.5rem;
|
|
3352
|
-
}
|
|
3353
|
-
.liq-px-4 {
|
|
3354
|
-
padding-left: 1rem;
|
|
3355
|
-
padding-right: 1rem;
|
|
3356
|
-
}
|
|
3357
|
-
.liq-px-8 {
|
|
3358
|
-
padding-left: 2rem;
|
|
3359
|
-
padding-right: 2rem;
|
|
3360
|
-
}
|
|
3361
|
-
.liq-py-0 {
|
|
3362
|
-
padding-top: 0px;
|
|
3363
|
-
padding-bottom: 0px;
|
|
3364
|
-
}
|
|
3365
|
-
.liq-py-1 {
|
|
3366
|
-
padding-top: 0.25rem;
|
|
3367
|
-
padding-bottom: 0.25rem;
|
|
3368
|
-
}
|
|
3369
|
-
.liq-py-2 {
|
|
3370
|
-
padding-top: 0.5rem;
|
|
3371
|
-
padding-bottom: 0.5rem;
|
|
3372
|
-
}
|
|
3373
|
-
.liq-py-3 {
|
|
3374
|
-
padding-top: 0.75rem;
|
|
3375
|
-
padding-bottom: 0.75rem;
|
|
3376
|
-
}
|
|
3377
|
-
.liq-py-5 {
|
|
3378
|
-
padding-top: 1.25rem;
|
|
3379
|
-
padding-bottom: 1.25rem;
|
|
3380
|
-
}
|
|
3381
|
-
.\!liq-pb-8 {
|
|
3382
|
-
padding-bottom: 2rem !important;
|
|
3383
|
-
}
|
|
3384
|
-
.\!liq-pt-6 {
|
|
3385
|
-
padding-top: 1.5rem !important;
|
|
3386
|
-
}
|
|
3387
|
-
.liq-pb-3 {
|
|
3388
|
-
padding-bottom: 0.75rem;
|
|
3389
|
-
}
|
|
3390
|
-
.liq-pb-8 {
|
|
3391
|
-
padding-bottom: 2rem;
|
|
3392
|
-
}
|
|
3393
|
-
.liq-pr-3 {
|
|
3394
|
-
padding-right: 0.75rem;
|
|
3395
|
-
}
|
|
3396
|
-
.liq-pt-12 {
|
|
3397
|
-
padding-top: 3rem;
|
|
3398
|
-
}
|
|
3399
|
-
.liq-pt-6 {
|
|
3400
|
-
padding-top: 1.5rem;
|
|
3401
|
-
}
|
|
3402
|
-
.liq-text-left {
|
|
3403
|
-
text-align: left;
|
|
3404
|
-
}
|
|
3405
|
-
.liq-text-center {
|
|
3406
|
-
text-align: center;
|
|
3407
|
-
}
|
|
3408
|
-
.liq-text-3xl {
|
|
3409
|
-
font-size: 1.875rem;
|
|
3410
|
-
line-height: 2.25rem;
|
|
3411
|
-
}
|
|
3412
|
-
.liq-text-\[60\%\] {
|
|
3413
|
-
font-size: 60%;
|
|
3414
|
-
}
|
|
3415
|
-
.liq-text-base {
|
|
3416
|
-
font-size: 1rem;
|
|
3417
|
-
line-height: 1.5rem;
|
|
3418
|
-
}
|
|
3419
|
-
.liq-text-lg {
|
|
3420
|
-
font-size: 1.125rem;
|
|
3421
|
-
line-height: 1.75rem;
|
|
3422
|
-
}
|
|
3423
|
-
.liq-text-sm {
|
|
3424
|
-
font-size: 0.875rem;
|
|
3425
|
-
line-height: 1.25rem;
|
|
3426
|
-
}
|
|
3427
|
-
.liq-text-xl {
|
|
3428
|
-
font-size: 1.25rem;
|
|
3429
|
-
line-height: 1.75rem;
|
|
3430
|
-
}
|
|
3431
|
-
.liq-text-xs {
|
|
3432
|
-
font-size: 0.75rem;
|
|
3433
|
-
line-height: 1rem;
|
|
3434
|
-
}
|
|
3435
|
-
.liq-font-bold {
|
|
3436
|
-
font-weight: 700;
|
|
3437
|
-
}
|
|
3438
|
-
.liq-font-medium {
|
|
3439
|
-
font-weight: 500;
|
|
3440
|
-
}
|
|
3441
|
-
.liq-font-semibold {
|
|
3442
|
-
font-weight: 600;
|
|
3443
|
-
}
|
|
3444
|
-
.liq-leading-9 {
|
|
3445
|
-
line-height: 2.25rem;
|
|
3446
|
-
}
|
|
3447
|
-
.liq-leading-none {
|
|
3448
|
-
line-height: 1;
|
|
3449
|
-
}
|
|
3450
|
-
.\!liq-text-primary-200 {
|
|
3451
|
-
--tw-text-opacity: 1 !important;
|
|
3452
|
-
color: rgb(165 230 254 / var(--tw-text-opacity, 1)) !important;
|
|
3453
|
-
}
|
|
3454
|
-
.liq-text-\[\#2b617a\] {
|
|
3455
|
-
--tw-text-opacity: 1;
|
|
3456
|
-
color: rgb(43 97 122 / var(--tw-text-opacity, 1));
|
|
3457
|
-
}
|
|
3458
|
-
.liq-text-black {
|
|
3459
|
-
--tw-text-opacity: 1;
|
|
3460
|
-
color: rgb(0 0 0 / var(--tw-text-opacity, 1));
|
|
3461
|
-
}
|
|
3462
|
-
.liq-text-danger {
|
|
3463
|
-
--tw-text-opacity: 1;
|
|
3464
|
-
color: rgb(248 113 113 / var(--tw-text-opacity, 1));
|
|
3465
|
-
}
|
|
3466
|
-
.liq-text-danger-50 {
|
|
3467
|
-
--tw-text-opacity: 1;
|
|
3468
|
-
color: rgb(254 242 242 / var(--tw-text-opacity, 1));
|
|
3469
|
-
}
|
|
3470
|
-
.liq-text-gray-400 {
|
|
3471
|
-
--tw-text-opacity: 1;
|
|
3472
|
-
color: rgb(156 163 175 / var(--tw-text-opacity, 1));
|
|
3473
|
-
}
|
|
3474
|
-
.liq-text-green-200 {
|
|
3475
|
-
--tw-text-opacity: 1;
|
|
3476
|
-
color: rgb(187 247 208 / var(--tw-text-opacity, 1));
|
|
3477
|
-
}
|
|
3478
|
-
.liq-text-green-300 {
|
|
3479
|
-
--tw-text-opacity: 1;
|
|
3480
|
-
color: rgb(134 239 172 / var(--tw-text-opacity, 1));
|
|
3481
|
-
}
|
|
3482
|
-
.liq-text-green-400 {
|
|
3483
|
-
--tw-text-opacity: 1;
|
|
3484
|
-
color: rgb(74 222 128 / var(--tw-text-opacity, 1));
|
|
3485
|
-
}
|
|
3486
|
-
.liq-text-inherit {
|
|
3487
|
-
color: inherit;
|
|
3488
|
-
}
|
|
3489
|
-
.liq-text-neutral-100 {
|
|
3490
|
-
--tw-text-opacity: 1;
|
|
3491
|
-
color: rgb(225 226 232 / var(--tw-text-opacity, 1));
|
|
3492
|
-
}
|
|
3493
|
-
.liq-text-neutral-200 {
|
|
3494
|
-
--tw-text-opacity: 1;
|
|
3495
|
-
color: rgb(205 208 219 / var(--tw-text-opacity, 1));
|
|
3496
|
-
}
|
|
3497
|
-
.liq-text-neutral-300 {
|
|
3498
|
-
--tw-text-opacity: 1;
|
|
3499
|
-
color: rgb(145 149 163 / var(--tw-text-opacity, 1));
|
|
3500
|
-
}
|
|
3501
|
-
.liq-text-neutral-400 {
|
|
3502
|
-
--tw-text-opacity: 1;
|
|
3503
|
-
color: rgb(117 121 133 / var(--tw-text-opacity, 1));
|
|
3504
|
-
}
|
|
3505
|
-
.liq-text-neutral-50 {
|
|
3506
|
-
--tw-text-opacity: 1;
|
|
3507
|
-
color: rgb(238 238 241 / var(--tw-text-opacity, 1));
|
|
3508
|
-
}
|
|
3509
|
-
.liq-text-neutral-500 {
|
|
3510
|
-
--tw-text-opacity: 1;
|
|
3511
|
-
color: rgb(96 98 109 / var(--tw-text-opacity, 1));
|
|
3512
|
-
}
|
|
3513
|
-
.liq-text-neutral-750 {
|
|
3514
|
-
--tw-text-opacity: 1;
|
|
3515
|
-
color: rgb(42 44 52 / var(--tw-text-opacity, 1));
|
|
3516
|
-
}
|
|
3517
|
-
.liq-text-primary {
|
|
3518
|
-
--tw-text-opacity: 1;
|
|
3519
|
-
color: rgb(0 124 255 / var(--tw-text-opacity, 1));
|
|
3520
|
-
}
|
|
3521
|
-
.liq-text-primary-200 {
|
|
3522
|
-
--tw-text-opacity: 1;
|
|
3523
|
-
color: rgb(165 230 254 / var(--tw-text-opacity, 1));
|
|
3524
|
-
}
|
|
3525
|
-
.liq-text-primary-300 {
|
|
3526
|
-
--tw-text-opacity: 1;
|
|
3527
|
-
color: rgb(119 220 253 / var(--tw-text-opacity, 1));
|
|
3528
|
-
}
|
|
3529
|
-
.liq-text-primary-400 {
|
|
3530
|
-
--tw-text-opacity: 1;
|
|
3531
|
-
color: rgb(59 197 252 / var(--tw-text-opacity, 1));
|
|
3532
|
-
}
|
|
3533
|
-
.liq-text-primary-50 {
|
|
3534
|
-
--tw-text-opacity: 1;
|
|
3535
|
-
color: rgb(220 245 254 / var(--tw-text-opacity, 1));
|
|
3536
|
-
}
|
|
3537
|
-
.liq-text-primary-950 {
|
|
3538
|
-
--tw-text-opacity: 1;
|
|
3539
|
-
color: rgb(5 17 31 / var(--tw-text-opacity, 1));
|
|
3540
|
-
}
|
|
3541
|
-
.liq-text-red-200 {
|
|
3542
|
-
--tw-text-opacity: 1;
|
|
3543
|
-
color: rgb(254 202 202 / var(--tw-text-opacity, 1));
|
|
3544
|
-
}
|
|
3545
|
-
.liq-text-red-400 {
|
|
3546
|
-
--tw-text-opacity: 1;
|
|
3547
|
-
color: rgb(248 113 113 / var(--tw-text-opacity, 1));
|
|
3548
|
-
}
|
|
3549
|
-
.liq-text-success-50 {
|
|
3550
|
-
--tw-text-opacity: 1;
|
|
3551
|
-
color: rgb(240 253 244 / var(--tw-text-opacity, 1));
|
|
3552
|
-
}
|
|
3553
|
-
.liq-text-white {
|
|
3554
|
-
--tw-text-opacity: 1;
|
|
3555
|
-
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
3556
|
-
}
|
|
3557
|
-
.liq-text-yellow-200 {
|
|
3558
|
-
--tw-text-opacity: 1;
|
|
3559
|
-
color: rgb(254 240 138 / var(--tw-text-opacity, 1));
|
|
3560
|
-
}
|
|
3561
|
-
.liq-text-yellow-400 {
|
|
3562
|
-
--tw-text-opacity: 1;
|
|
3563
|
-
color: rgb(250 204 21 / var(--tw-text-opacity, 1));
|
|
3564
|
-
}
|
|
3565
|
-
.liq-text-zinc-300 {
|
|
3566
|
-
--tw-text-opacity: 1;
|
|
3567
|
-
color: rgb(212 212 216 / var(--tw-text-opacity, 1));
|
|
3568
|
-
}
|
|
3569
|
-
.liq-underline {
|
|
3570
|
-
text-decoration-line: underline;
|
|
3571
|
-
}
|
|
3572
|
-
.liq-no-underline {
|
|
3573
|
-
text-decoration-line: none;
|
|
3574
|
-
}
|
|
3575
|
-
.\!liq-opacity-70 {
|
|
3576
|
-
opacity: 0.7 !important;
|
|
3577
|
-
}
|
|
3578
|
-
.liq-opacity-0 {
|
|
3579
|
-
opacity: 0;
|
|
3580
|
-
}
|
|
3581
|
-
.liq-opacity-100 {
|
|
3582
|
-
opacity: 1;
|
|
3583
|
-
}
|
|
3584
|
-
.liq-opacity-50 {
|
|
3585
|
-
opacity: 0.5;
|
|
3586
|
-
}
|
|
3587
|
-
.liq-shadow-2xl {
|
|
3588
|
-
--tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
|
|
3589
|
-
--tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
|
|
3590
|
-
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
3591
|
-
}
|
|
3592
|
-
.\!liq-outline {
|
|
3593
|
-
outline-style: solid !important;
|
|
3594
|
-
}
|
|
3595
|
-
.liq-outline {
|
|
3596
|
-
outline-style: solid;
|
|
3597
|
-
}
|
|
3598
|
-
.liq-outline-0 {
|
|
3599
|
-
outline-width: 0px;
|
|
3600
|
-
}
|
|
3601
|
-
.liq-outline-1 {
|
|
3602
|
-
outline-width: 1px;
|
|
3603
|
-
}
|
|
3604
|
-
.\!liq-outline-transparent {
|
|
3605
|
-
outline-color: transparent !important;
|
|
3606
|
-
}
|
|
3607
|
-
.liq-outline-neutral-600 {
|
|
3608
|
-
outline-color: #4f515a;
|
|
3609
|
-
}
|
|
3610
|
-
.liq-outline-neutral-700\/20 {
|
|
3611
|
-
outline-color: rgb(59 61 72 / 0.2);
|
|
3612
|
-
}
|
|
3613
|
-
.liq-outline-transparent {
|
|
3614
|
-
outline-color: transparent;
|
|
3615
|
-
}
|
|
3616
|
-
.liq-backdrop-blur-sm {
|
|
3617
|
-
--tw-backdrop-blur: blur(4px);
|
|
3618
|
-
-webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
|
|
3619
|
-
backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
|
|
3620
|
-
}
|
|
3621
|
-
.liq-backdrop-filter {
|
|
3622
|
-
-webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
|
|
3623
|
-
backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
|
|
3624
|
-
}
|
|
3625
|
-
.liq-transition {
|
|
3626
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
|
|
3627
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
3628
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
|
|
3629
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
3630
|
-
transition-duration: 150ms;
|
|
3631
|
-
}
|
|
3632
|
-
.liq-transition-colors {
|
|
3633
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
|
3634
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
3635
|
-
transition-duration: 150ms;
|
|
3636
|
-
}
|
|
3637
|
-
.liq-transition-opacity {
|
|
3638
|
-
transition-property: opacity;
|
|
3639
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
3640
|
-
transition-duration: 150ms;
|
|
3641
|
-
}
|
|
3642
|
-
.liq-duration-150 {
|
|
3643
|
-
transition-duration: 150ms;
|
|
3644
|
-
}
|
|
3645
|
-
.liq-duration-200 {
|
|
3646
|
-
transition-duration: 200ms;
|
|
3647
|
-
}
|
|
3648
|
-
.liq-ease-in-out {
|
|
3649
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
3650
|
-
}
|
|
3651
|
-
.scrollbar-thin {
|
|
3652
|
-
scrollbar-width: thin;
|
|
3653
|
-
}
|
|
3654
|
-
.scrollbar-thin:hover {
|
|
3655
|
-
--fix: ; /* This custom property invalidates styles on hover, thereby enforcing a style recomputation. This is needed to work around a bug in Safari. */
|
|
3656
|
-
}
|
|
3657
|
-
/* Legacy browsers with `::-webkit-scrollbar-*` support */
|
|
3658
|
-
@supports selector(::-webkit-scrollbar) {
|
|
3659
|
-
.scrollbar-thin::-webkit-scrollbar,
|
|
3660
|
-
.scrollbar-thin::-webkit-scrollbar-track,
|
|
3661
|
-
.scrollbar-thin::-webkit-scrollbar-track:hover,
|
|
3662
|
-
.scrollbar-thin::-webkit-scrollbar-corner,
|
|
3663
|
-
.scrollbar-thin::-webkit-scrollbar:horizontal {
|
|
3664
|
-
background-color: transparent;
|
|
3665
|
-
}
|
|
3666
|
-
.scrollbar-thin::-webkit-scrollbar {
|
|
3667
|
-
height: 0.5rem;
|
|
3668
|
-
width: 0.5rem;
|
|
3669
|
-
}
|
|
3670
|
-
.scrollbar-thin::-webkit-scrollbar:horizontal {
|
|
3671
|
-
height: 0.5rem;
|
|
3672
|
-
}
|
|
3673
|
-
.scrollbar-thin::-webkit-scrollbar-thumb,
|
|
3674
|
-
.scrollbar-thin::-webkit-scrollbar-thumb:horizontal {
|
|
3675
|
-
border-radius: 0.5rem;
|
|
3676
|
-
border-width: 2px;
|
|
3677
|
-
border-style: solid;
|
|
3678
|
-
border-color: transparent;
|
|
3679
|
-
--tw-bg-opacity: 1;
|
|
3680
|
-
background-color: rgb(59 61 72 / var(--tw-bg-opacity, 1));
|
|
3681
|
-
}
|
|
3682
|
-
.scrollbar-thin::-webkit-scrollbar-thumb:hover {
|
|
3683
|
-
border-width: 2px;
|
|
3684
|
-
border-style: solid;
|
|
3685
|
-
border-color: transparent;
|
|
3686
|
-
--tw-bg-opacity: 1;
|
|
3687
|
-
background-color: rgb(79 81 90 / var(--tw-bg-opacity, 1));
|
|
3688
|
-
}
|
|
3689
|
-
.scrollbar-thin::-webkit-scrollbar-button {
|
|
3690
|
-
display: none;
|
|
3691
|
-
}
|
|
3692
|
-
.scrollbar-thin::-webkit-resizer {
|
|
3693
|
-
background-color: transparent;
|
|
3694
|
-
}
|
|
3695
|
-
}
|
|
3696
|
-
.placeholder\:liq-font-medium::-moz-placeholder {
|
|
3697
|
-
font-weight: 500;
|
|
3698
|
-
}
|
|
3699
|
-
.placeholder\:liq-font-medium::placeholder {
|
|
3700
|
-
font-weight: 500;
|
|
3701
|
-
}
|
|
3702
|
-
.placeholder\:liq-text-neutral-300::-moz-placeholder {
|
|
3703
|
-
--tw-text-opacity: 1;
|
|
3704
|
-
color: rgb(145 149 163 / var(--tw-text-opacity, 1));
|
|
3705
|
-
}
|
|
3706
|
-
.placeholder\:liq-text-neutral-300::placeholder {
|
|
3707
|
-
--tw-text-opacity: 1;
|
|
3708
|
-
color: rgb(145 149 163 / var(--tw-text-opacity, 1));
|
|
3709
|
-
}
|
|
3710
|
-
.focus-within\:liq-outline-neutral-700\/75:focus-within {
|
|
3711
|
-
outline-color: rgb(59 61 72 / 0.75);
|
|
3712
|
-
}
|
|
3713
|
-
.focus-within\:liq-outline-neutral-700\/80:focus-within {
|
|
3714
|
-
outline-color: rgb(59 61 72 / 0.8);
|
|
3715
|
-
}
|
|
3716
|
-
.hover\:\!liq-bg-neutral-700:hover {
|
|
3717
|
-
--tw-bg-opacity: 1 !important;
|
|
3718
|
-
background-color: rgb(59 61 72 / var(--tw-bg-opacity, 1)) !important;
|
|
3719
|
-
}
|
|
3720
|
-
.hover\:liq-bg-\[\#1E65E7\]:hover {
|
|
3721
|
-
--tw-bg-opacity: 1;
|
|
3722
|
-
background-color: rgb(30 101 231 / var(--tw-bg-opacity, 1));
|
|
3723
|
-
}
|
|
3724
|
-
.hover\:liq-bg-\[\#3B3D48\]:hover {
|
|
3725
|
-
--tw-bg-opacity: 1;
|
|
3726
|
-
background-color: rgb(59 61 72 / var(--tw-bg-opacity, 1));
|
|
3727
|
-
}
|
|
3728
|
-
.hover\:liq-bg-neutral-500:hover {
|
|
3729
|
-
--tw-bg-opacity: 1;
|
|
3730
|
-
background-color: rgb(96 98 109 / var(--tw-bg-opacity, 1));
|
|
3731
|
-
}
|
|
3732
|
-
.hover\:liq-bg-neutral-650:hover {
|
|
3733
|
-
--tw-bg-opacity: 1;
|
|
3734
|
-
background-color: rgb(70 72 83 / var(--tw-bg-opacity, 1));
|
|
3735
|
-
}
|
|
3736
|
-
.hover\:liq-bg-neutral-700:hover {
|
|
3737
|
-
--tw-bg-opacity: 1;
|
|
3738
|
-
background-color: rgb(59 61 72 / var(--tw-bg-opacity, 1));
|
|
3739
|
-
}
|
|
3740
|
-
.hover\:liq-bg-neutral-700\/50:hover {
|
|
3741
|
-
background-color: rgb(59 61 72 / 0.5);
|
|
3742
|
-
}
|
|
3743
|
-
.hover\:liq-bg-neutral-800:hover {
|
|
3744
|
-
--tw-bg-opacity: 1;
|
|
3745
|
-
background-color: rgb(35 36 43 / var(--tw-bg-opacity, 1));
|
|
3746
|
-
}
|
|
3747
|
-
.hover\:liq-bg-primary-200:hover {
|
|
3748
|
-
--tw-bg-opacity: 1;
|
|
3749
|
-
background-color: rgb(165 230 254 / var(--tw-bg-opacity, 1));
|
|
3750
|
-
}
|
|
3751
|
-
.hover\:liq-bg-white\/10:hover {
|
|
3752
|
-
background-color: rgb(255 255 255 / 0.1);
|
|
3753
|
-
}
|
|
3754
|
-
.hover\:liq-bg-opacity-80:hover {
|
|
3755
|
-
--tw-bg-opacity: 0.8;
|
|
3756
|
-
}
|
|
3757
|
-
.hover\:liq-bg-opacity-\[0\.15\]:hover {
|
|
3758
|
-
--tw-bg-opacity: 0.15;
|
|
3759
|
-
}
|
|
3760
|
-
.hover\:liq-bg-opacity-\[0\.25\]:hover {
|
|
3761
|
-
--tw-bg-opacity: 0.25;
|
|
3762
|
-
}
|
|
3763
|
-
.hover\:liq-text-green-200:hover {
|
|
3764
|
-
--tw-text-opacity: 1;
|
|
3765
|
-
color: rgb(187 247 208 / var(--tw-text-opacity, 1));
|
|
3766
|
-
}
|
|
3767
|
-
.hover\:liq-text-neutral-400:hover {
|
|
3768
|
-
--tw-text-opacity: 1;
|
|
3769
|
-
color: rgb(117 121 133 / var(--tw-text-opacity, 1));
|
|
3770
|
-
}
|
|
3771
|
-
.hover\:liq-text-primary-200:hover {
|
|
3772
|
-
--tw-text-opacity: 1;
|
|
3773
|
-
color: rgb(165 230 254 / var(--tw-text-opacity, 1));
|
|
3774
|
-
}
|
|
3775
|
-
.hover\:liq-text-white:hover {
|
|
3776
|
-
--tw-text-opacity: 1;
|
|
3777
|
-
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
3778
|
-
}
|
|
3779
|
-
.hover\:liq-outline-neutral-700\/55:hover {
|
|
3780
|
-
outline-color: rgb(59 61 72 / 0.55);
|
|
3781
|
-
}
|
|
3782
|
-
.hover\:focus-within\:liq-outline-neutral-700\/80:focus-within:hover {
|
|
3783
|
-
outline-color: rgb(59 61 72 / 0.8);
|
|
3784
|
-
}
|
|
3785
|
-
.hover\:enabled\:liq-bg-danger-300:enabled:hover {
|
|
3786
|
-
--tw-bg-opacity: 1;
|
|
3787
|
-
background-color: rgb(252 165 165 / var(--tw-bg-opacity, 1));
|
|
3788
|
-
}
|
|
3789
|
-
.hover\:enabled\:liq-bg-danger-500:enabled:hover {
|
|
3790
|
-
--tw-bg-opacity: 1;
|
|
3791
|
-
background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
|
|
3792
|
-
}
|
|
3793
|
-
.hover\:enabled\:liq-bg-neutral-300:enabled:hover {
|
|
3794
|
-
--tw-bg-opacity: 1;
|
|
3795
|
-
background-color: rgb(145 149 163 / var(--tw-bg-opacity, 1));
|
|
3796
|
-
}
|
|
3797
|
-
.hover\:enabled\:liq-bg-neutral-500:enabled:hover {
|
|
3798
|
-
--tw-bg-opacity: 1;
|
|
3799
|
-
background-color: rgb(96 98 109 / var(--tw-bg-opacity, 1));
|
|
3800
|
-
}
|
|
3801
|
-
.hover\:enabled\:liq-bg-neutral-600:enabled:hover {
|
|
3802
|
-
--tw-bg-opacity: 1;
|
|
3803
|
-
background-color: rgb(79 81 90 / var(--tw-bg-opacity, 1));
|
|
3804
|
-
}
|
|
3805
|
-
.hover\:enabled\:liq-bg-neutral-600\/50:enabled:hover {
|
|
3806
|
-
background-color: rgb(79 81 90 / 0.5);
|
|
3807
|
-
}
|
|
3808
|
-
.hover\:enabled\:liq-bg-neutral-650:enabled:hover {
|
|
3809
|
-
--tw-bg-opacity: 1;
|
|
3810
|
-
background-color: rgb(70 72 83 / var(--tw-bg-opacity, 1));
|
|
3811
|
-
}
|
|
3812
|
-
.hover\:enabled\:liq-bg-neutral-700:enabled:hover {
|
|
3813
|
-
--tw-bg-opacity: 1;
|
|
3814
|
-
background-color: rgb(59 61 72 / var(--tw-bg-opacity, 1));
|
|
3815
|
-
}
|
|
3816
|
-
.hover\:enabled\:liq-bg-neutral-750:enabled:hover {
|
|
3817
|
-
--tw-bg-opacity: 1;
|
|
3818
|
-
background-color: rgb(42 44 52 / var(--tw-bg-opacity, 1));
|
|
3819
|
-
}
|
|
3820
|
-
.hover\:enabled\:liq-bg-neutral-800:enabled:hover {
|
|
3821
|
-
--tw-bg-opacity: 1;
|
|
3822
|
-
background-color: rgb(35 36 43 / var(--tw-bg-opacity, 1));
|
|
3823
|
-
}
|
|
3824
|
-
.hover\:enabled\:liq-bg-primary:enabled:hover {
|
|
3825
|
-
--tw-bg-opacity: 1;
|
|
3826
|
-
background-color: rgb(0 124 255 / var(--tw-bg-opacity, 1));
|
|
3827
|
-
}
|
|
3828
|
-
.hover\:enabled\:liq-bg-primary-200:enabled:hover {
|
|
3829
|
-
--tw-bg-opacity: 1;
|
|
3830
|
-
background-color: rgb(165 230 254 / var(--tw-bg-opacity, 1));
|
|
3831
|
-
}
|
|
3832
|
-
.hover\:enabled\:liq-bg-primary-700\/80:enabled:hover {
|
|
3833
|
-
background-color: rgb(0 123 255 / 0.8);
|
|
3834
|
-
}
|
|
3835
|
-
.hover\:enabled\:liq-bg-success-600:enabled:hover {
|
|
3836
|
-
--tw-bg-opacity: 1;
|
|
3837
|
-
background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
|
|
3838
|
-
}
|
|
3839
|
-
.hover\:enabled\:liq-bg-white\/10:enabled:hover {
|
|
3840
|
-
background-color: rgb(255 255 255 / 0.1);
|
|
3841
|
-
}
|
|
3842
|
-
.hover\:enabled\:liq-text-white:enabled:hover {
|
|
3843
|
-
--tw-text-opacity: 1;
|
|
3844
|
-
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
3845
|
-
}
|
|
3846
|
-
.hover\:enabled\:liq-outline-neutral-600:enabled:hover {
|
|
3847
|
-
outline-color: #4f515a;
|
|
3848
|
-
}
|
|
3849
|
-
.disabled\:liq-bg-neutral-850\/50:disabled {
|
|
3850
|
-
background-color: rgb(30 31 37 / 0.5);
|
|
3851
|
-
}
|
|
3852
|
-
.disabled\:\!liq-opacity-70:disabled {
|
|
3853
|
-
opacity: 0.7 !important;
|
|
3854
|
-
}
|
|
3855
|
-
.disabled\:liq-opacity-50:disabled {
|
|
3856
|
-
opacity: 0.5;
|
|
3857
|
-
}
|
|
3858
|
-
.liq-group:hover .group-hover\:liq-text-neutral-50 {
|
|
3859
|
-
--tw-text-opacity: 1;
|
|
3860
|
-
color: rgb(238 238 241 / var(--tw-text-opacity, 1));
|
|
3861
|
-
}
|
|
3862
|
-
@media not all and (min-width: 640px) {
|
|
3863
|
-
|
|
3864
|
-
.max-sm\:liq-hidden {
|
|
3865
|
-
display: none;
|
|
3866
|
-
}
|
|
3867
|
-
}
|
|
3868
|
-
@media (min-width: 640px) {
|
|
3869
|
-
|
|
3870
|
-
.sm\:liq-pb-6 {
|
|
3871
|
-
padding-bottom: 1.5rem;
|
|
3872
|
-
}
|
|
3873
|
-
}
|
|
3874
|
-
@media (min-width: 768px) {
|
|
3875
|
-
|
|
3876
|
-
.md\:liq-text-clip {
|
|
3877
|
-
text-overflow: clip;
|
|
3878
|
-
}
|
|
3879
|
-
|
|
3880
|
-
.md\:liq-rounded-3xl {
|
|
3881
|
-
border-radius: 1.5rem;
|
|
3882
|
-
}
|
|
3883
|
-
|
|
3884
|
-
.md\:liq-p-10 {
|
|
3885
|
-
padding: 2.5rem;
|
|
3886
|
-
}
|
|
3887
|
-
}
|
|
3888
|
-
@media (min-width: 1024px) {
|
|
3889
|
-
|
|
3890
|
-
.lg\:liq-order-2 {
|
|
3891
|
-
order: 2;
|
|
3892
|
-
}
|
|
3893
|
-
|
|
3894
|
-
.lg\:liq-max-w-\[27\.5rem\] {
|
|
3895
|
-
max-width: 27.5rem;
|
|
3896
|
-
}
|
|
3897
|
-
|
|
3898
|
-
.lg\:liq-translate-x-0 {
|
|
3899
|
-
--tw-translate-x: 0px;
|
|
3900
|
-
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));
|
|
3901
|
-
}
|
|
3902
|
-
|
|
3903
|
-
.lg\:liq-translate-x-full {
|
|
3904
|
-
--tw-translate-x: 100%;
|
|
3905
|
-
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));
|
|
3906
|
-
}
|
|
3907
|
-
|
|
3908
|
-
.lg\:liq-translate-y-0 {
|
|
3909
|
-
--tw-translate-y: 0px;
|
|
3910
|
-
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));
|
|
3911
|
-
}
|
|
3912
|
-
|
|
3913
|
-
.lg\:liq-p-6 {
|
|
3914
|
-
padding: 1.5rem;
|
|
3915
|
-
}
|
|
3916
2219
|
}
|