@tapcart/mobile-components 0.12.11 → 0.12.13
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/dist/components/hooks/use-scroll-direction.d.ts.map +1 -1
- package/dist/components/hooks/use-scroll-direction.js +15 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/lib/utils.d.ts +2 -0
- package/dist/lib/utils.d.ts.map +1 -1
- package/dist/lib/utils.js +20 -0
- package/dist/styles.css +474 -31
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-scroll-direction.d.ts","sourceRoot":"","sources":["../../../components/hooks/use-scroll-direction.ts"],"names":[],"mappings":"AAGA,KAAK,eAAe,GAAG,IAAI,GAAG,MAAM,GAAG,IAAI,CAAA;AAE3C,UAAU,UAAU;IAClB,SAAS,EAAE,eAAe,CAAA;IAC1B,OAAO,EAAE,MAAM,CAAA;CAChB;AAED,iBAAS,kBAAkB,CAAC,SAAS,GAAE,MAAY,GAAG,UAAU,
|
|
1
|
+
{"version":3,"file":"use-scroll-direction.d.ts","sourceRoot":"","sources":["../../../components/hooks/use-scroll-direction.ts"],"names":[],"mappings":"AAGA,KAAK,eAAe,GAAG,IAAI,GAAG,MAAM,GAAG,IAAI,CAAA;AAE3C,UAAU,UAAU;IAClB,SAAS,EAAE,eAAe,CAAA;IAC1B,OAAO,EAAE,MAAM,CAAA;CAChB;AAED,iBAAS,kBAAkB,CAAC,SAAS,GAAE,MAAY,GAAG,UAAU,CA8E/D;AAED,OAAO,EAAE,kBAAkB,EAAE,CAAA"}
|
|
@@ -10,6 +10,7 @@ function useScrollDirection(threshold = 100) {
|
|
|
10
10
|
const hasScrollListener = useRef(false);
|
|
11
11
|
const lastScrollY = useRef(0);
|
|
12
12
|
const isBouncing = useRef(false);
|
|
13
|
+
const rafId = useRef(null);
|
|
13
14
|
useEffect(() => {
|
|
14
15
|
var _a;
|
|
15
16
|
if (typeof window === "undefined" || React.version === "17.0.2") {
|
|
@@ -45,16 +46,28 @@ function useScrollDirection(threshold = 100) {
|
|
|
45
46
|
if (!scrollElement.current) {
|
|
46
47
|
scrollElement.current = document.getElementById("tc-vgsl");
|
|
47
48
|
}
|
|
49
|
+
const handleScroll = () => {
|
|
50
|
+
if (rafId.current !== null)
|
|
51
|
+
return;
|
|
52
|
+
rafId.current = requestAnimationFrame(() => {
|
|
53
|
+
rafId.current = null;
|
|
54
|
+
updateScrollDirection();
|
|
55
|
+
});
|
|
56
|
+
};
|
|
48
57
|
if (!hasScrollListener.current) {
|
|
49
|
-
(_a = scrollElement.current) === null || _a === void 0 ? void 0 : _a.addEventListener("scroll",
|
|
58
|
+
(_a = scrollElement.current) === null || _a === void 0 ? void 0 : _a.addEventListener("scroll", handleScroll, {
|
|
50
59
|
passive: true,
|
|
51
60
|
});
|
|
52
61
|
hasScrollListener.current = true;
|
|
53
62
|
}
|
|
54
63
|
return () => {
|
|
55
64
|
var _a;
|
|
56
|
-
(_a = scrollElement.current) === null || _a === void 0 ? void 0 : _a.removeEventListener("scroll",
|
|
65
|
+
(_a = scrollElement.current) === null || _a === void 0 ? void 0 : _a.removeEventListener("scroll", handleScroll);
|
|
57
66
|
hasScrollListener.current = false;
|
|
67
|
+
if (rafId.current !== null) {
|
|
68
|
+
cancelAnimationFrame(rafId.current);
|
|
69
|
+
rafId.current = null;
|
|
70
|
+
}
|
|
58
71
|
};
|
|
59
72
|
}, [threshold]);
|
|
60
73
|
return scrollData;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { addItemToWishlist, cn, createCollectionImageMap, cva, formatRelativeTime, getBackgroundAndPaddingStyle, getBackgroundAndSpacingStyle, getBadgesForProductFn, getBorderSidesStyle, getBorderStyle, getColor, getDestinationHandler, getEnabledWishlistIntegration, getGridSpacing, getIdFromGid, getInputPlaceholderTextProps, getLoyaltyButtonProps, getMarginStyle, getOverlayStyle, getPaddingStyle, getProductGidsFromIds, getSpaceBetween, getTextStyle, getVariantGidsFromIds, getVerticalAlignment, getVerticalAlignmentStyle, getWishlistAddItemNavigation, isFavoriteIntegrationEnabled, isVideo, mapFlexToAlignment, parsePhoneNumber, pluralize, productGidFromId, removeItemFromWishlists, stringRatioToInt, supportedVideoExtensions, supportsMultipleWishlists, throttleFunction, variantGidFromId, } from "./lib/utils";
|
|
1
|
+
export { addItemToWishlist, cn, createCollectionImageMap, cva, formatRelativeTime, getBackgroundAndPaddingStyle, getBackgroundAndSpacingStyle, getBadgesForProductFn, getBorderSidesStyle, getBorderStyle, getColor, getDestinationHandler, getEnabledWishlistIntegration, getGridSpacing, getIdFromGid, getInputPlaceholderTextProps, getLoyaltyButtonProps, getMarginStyle, getOverlayStyle, getPaddingStyle, getProductGidsFromIds, getSpaceBetween, getTextStyle, getVariantGidsFromIds, getVerticalAlignment, getVerticalAlignmentStyle, getWishlistAddItemNavigation, isFavoriteIntegrationEnabled, isVideo, mapFlexToAlignment, parsePhoneNumber, pluralize, productGidFromId, removeItemFromWishlists, stringRatioToInt, supportedVideoExtensions, supportsMultipleWishlists, throttleFunction, variantGidFromId, formatFrequency, formatPrice, } from "./lib/utils";
|
|
2
2
|
export type { WishlistEntryMatch } from "./lib/utils";
|
|
3
3
|
export * from "./lib/cart.util";
|
|
4
4
|
export * from "./lib/variablesCart.util";
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AACA,OAAO,EACL,iBAAiB,EACjB,EAAE,EACF,wBAAwB,EACxB,GAAG,EACH,kBAAkB,EAClB,4BAA4B,EAC5B,4BAA4B,EAC5B,qBAAqB,EACrB,mBAAmB,EACnB,cAAc,EACd,QAAQ,EACR,qBAAqB,EACrB,6BAA6B,EAC7B,cAAc,EACd,YAAY,EACZ,4BAA4B,EAC5B,qBAAqB,EACrB,cAAc,EACd,eAAe,EACf,eAAe,EACf,qBAAqB,EACrB,eAAe,EACf,YAAY,EACZ,qBAAqB,EACrB,oBAAoB,EACpB,yBAAyB,EACzB,4BAA4B,EAC5B,4BAA4B,EAC5B,OAAO,EACP,kBAAkB,EAClB,gBAAgB,EAChB,SAAS,EACT,gBAAgB,EAChB,uBAAuB,EACvB,gBAAgB,EAChB,wBAAwB,EACxB,yBAAyB,EACzB,gBAAgB,EAChB,gBAAgB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// component exports
|
|
2
|
-
export { addItemToWishlist, cn, createCollectionImageMap, cva, formatRelativeTime, getBackgroundAndPaddingStyle, getBackgroundAndSpacingStyle, getBadgesForProductFn, getBorderSidesStyle, getBorderStyle, getColor, getDestinationHandler, getEnabledWishlistIntegration, getGridSpacing, getIdFromGid, getInputPlaceholderTextProps, getLoyaltyButtonProps, getMarginStyle, getOverlayStyle, getPaddingStyle, getProductGidsFromIds, getSpaceBetween, getTextStyle, getVariantGidsFromIds, getVerticalAlignment, getVerticalAlignmentStyle, getWishlistAddItemNavigation, isFavoriteIntegrationEnabled, isVideo, mapFlexToAlignment, parsePhoneNumber, pluralize, productGidFromId, removeItemFromWishlists, stringRatioToInt, supportedVideoExtensions, supportsMultipleWishlists, throttleFunction, variantGidFromId, } from "./lib/utils";
|
|
2
|
+
export { addItemToWishlist, cn, createCollectionImageMap, cva, formatRelativeTime, getBackgroundAndPaddingStyle, getBackgroundAndSpacingStyle, getBadgesForProductFn, getBorderSidesStyle, getBorderStyle, getColor, getDestinationHandler, getEnabledWishlistIntegration, getGridSpacing, getIdFromGid, getInputPlaceholderTextProps, getLoyaltyButtonProps, getMarginStyle, getOverlayStyle, getPaddingStyle, getProductGidsFromIds, getSpaceBetween, getTextStyle, getVariantGidsFromIds, getVerticalAlignment, getVerticalAlignmentStyle, getWishlistAddItemNavigation, isFavoriteIntegrationEnabled, isVideo, mapFlexToAlignment, parsePhoneNumber, pluralize, productGidFromId, removeItemFromWishlists, stringRatioToInt, supportedVideoExtensions, supportsMultipleWishlists, throttleFunction, variantGidFromId, formatFrequency, formatPrice, } from "./lib/utils";
|
|
3
3
|
export * from "./lib/cart.util";
|
|
4
4
|
export * from "./lib/variablesCart.util";
|
|
5
5
|
export * from "./lib/isTapcartVersion20.util";
|
package/dist/lib/utils.d.ts
CHANGED
|
@@ -3,6 +3,8 @@ import { ClassValue } from "clsx";
|
|
|
3
3
|
import { CSSProperties } from "react";
|
|
4
4
|
export declare const supportedVideoExtensions: string[];
|
|
5
5
|
export declare const isVideo: (url: string) => boolean;
|
|
6
|
+
export declare const formatFrequency: (freq: number, unit: string, translations: Record<string, string>) => string;
|
|
7
|
+
export declare const formatPrice: (amount: any, currency: string) => string;
|
|
6
8
|
export declare const parsePhoneNumber: (input: string, country?: string) => import("phone").PhoneResult;
|
|
7
9
|
export type Color = {
|
|
8
10
|
type: "custom" | "brand-kit";
|
package/dist/lib/utils.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../lib/utils.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../lib/utils.ts"],"names":[],"mappings":"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"}
|
package/dist/lib/utils.js
CHANGED
|
@@ -15,6 +15,26 @@ import Pluralize from "pluralize";
|
|
|
15
15
|
import { phone } from "phone";
|
|
16
16
|
export const supportedVideoExtensions = [".mp4", ".mov"];
|
|
17
17
|
export const isVideo = (url) => supportedVideoExtensions.some((extension) => url.includes(extension));
|
|
18
|
+
export const formatFrequency = (freq, unit, translations) => {
|
|
19
|
+
if (freq && unit) {
|
|
20
|
+
const key = freq === 1
|
|
21
|
+
? `subscription-every-${unit}-one`
|
|
22
|
+
: `subscription-every-${unit}-other`;
|
|
23
|
+
const template = translations[key] || `Every ${freq} ${unit}${freq === 1 ? "" : "s"}`;
|
|
24
|
+
return template.replace("%@", freq.toString());
|
|
25
|
+
}
|
|
26
|
+
else {
|
|
27
|
+
return "";
|
|
28
|
+
}
|
|
29
|
+
};
|
|
30
|
+
export const formatPrice = (amount, currency) => {
|
|
31
|
+
if (amount !== null && amount !== undefined) {
|
|
32
|
+
return `${Number(amount).toFixed(2)} ${currency !== null && currency !== void 0 ? currency : ""}`;
|
|
33
|
+
}
|
|
34
|
+
else {
|
|
35
|
+
return "";
|
|
36
|
+
}
|
|
37
|
+
};
|
|
18
38
|
export const parsePhoneNumber = (input, country) => phone(input, { country });
|
|
19
39
|
export function cn(...inputs) {
|
|
20
40
|
return twMerge(clsx(inputs));
|
package/dist/styles.css
CHANGED
|
@@ -741,12 +741,18 @@ video {
|
|
|
741
741
|
.bottom-2 {
|
|
742
742
|
bottom: 0.5rem;
|
|
743
743
|
}
|
|
744
|
+
.bottom-4 {
|
|
745
|
+
bottom: 1rem;
|
|
746
|
+
}
|
|
744
747
|
.bottom-\[18px\] {
|
|
745
748
|
bottom: 18px;
|
|
746
749
|
}
|
|
747
750
|
.bottom-\[58px\] {
|
|
748
751
|
bottom: 58px;
|
|
749
752
|
}
|
|
753
|
+
.bottom-\[9px\] {
|
|
754
|
+
bottom: 9px;
|
|
755
|
+
}
|
|
750
756
|
.left-0 {
|
|
751
757
|
left: 0px;
|
|
752
758
|
}
|
|
@@ -762,6 +768,12 @@ video {
|
|
|
762
768
|
.left-4 {
|
|
763
769
|
left: 1rem;
|
|
764
770
|
}
|
|
771
|
+
.left-5 {
|
|
772
|
+
left: 1.25rem;
|
|
773
|
+
}
|
|
774
|
+
.left-\[-10\%\] {
|
|
775
|
+
left: -10%;
|
|
776
|
+
}
|
|
765
777
|
.left-\[50\%\] {
|
|
766
778
|
left: 50%;
|
|
767
779
|
}
|
|
@@ -795,6 +807,9 @@ video {
|
|
|
795
807
|
.isolate {
|
|
796
808
|
isolation: isolate;
|
|
797
809
|
}
|
|
810
|
+
.z-0 {
|
|
811
|
+
z-index: 0;
|
|
812
|
+
}
|
|
798
813
|
.z-10 {
|
|
799
814
|
z-index: 10;
|
|
800
815
|
}
|
|
@@ -804,12 +819,21 @@ video {
|
|
|
804
819
|
.z-30 {
|
|
805
820
|
z-index: 30;
|
|
806
821
|
}
|
|
822
|
+
.z-40 {
|
|
823
|
+
z-index: 40;
|
|
824
|
+
}
|
|
807
825
|
.z-50 {
|
|
808
826
|
z-index: 50;
|
|
809
827
|
}
|
|
810
828
|
.z-\[100\] {
|
|
811
829
|
z-index: 100;
|
|
812
830
|
}
|
|
831
|
+
.z-\[1\] {
|
|
832
|
+
z-index: 1;
|
|
833
|
+
}
|
|
834
|
+
.z-\[30\] {
|
|
835
|
+
z-index: 30;
|
|
836
|
+
}
|
|
813
837
|
.order-1 {
|
|
814
838
|
order: 1;
|
|
815
839
|
}
|
|
@@ -842,6 +866,10 @@ video {
|
|
|
842
866
|
margin-left: 0.25rem;
|
|
843
867
|
margin-right: 0.25rem;
|
|
844
868
|
}
|
|
869
|
+
.mx-1\.5 {
|
|
870
|
+
margin-left: 0.375rem;
|
|
871
|
+
margin-right: 0.375rem;
|
|
872
|
+
}
|
|
845
873
|
.mx-2 {
|
|
846
874
|
margin-left: 0.5rem;
|
|
847
875
|
margin-right: 0.5rem;
|
|
@@ -862,6 +890,10 @@ video {
|
|
|
862
890
|
margin-top: 0.25rem;
|
|
863
891
|
margin-bottom: 0.25rem;
|
|
864
892
|
}
|
|
893
|
+
.my-2 {
|
|
894
|
+
margin-top: 0.5rem;
|
|
895
|
+
margin-bottom: 0.5rem;
|
|
896
|
+
}
|
|
865
897
|
.my-3 {
|
|
866
898
|
margin-top: 0.75rem;
|
|
867
899
|
margin-bottom: 0.75rem;
|
|
@@ -870,10 +902,17 @@ video {
|
|
|
870
902
|
margin-top: 1rem;
|
|
871
903
|
margin-bottom: 1rem;
|
|
872
904
|
}
|
|
905
|
+
.my-5 {
|
|
906
|
+
margin-top: 1.25rem;
|
|
907
|
+
margin-bottom: 1.25rem;
|
|
908
|
+
}
|
|
873
909
|
.my-auto {
|
|
874
910
|
margin-top: auto;
|
|
875
911
|
margin-bottom: auto;
|
|
876
912
|
}
|
|
913
|
+
.-mb-\[10\.5px\] {
|
|
914
|
+
margin-bottom: -10.5px;
|
|
915
|
+
}
|
|
877
916
|
.-mt-1 {
|
|
878
917
|
margin-top: -0.25rem;
|
|
879
918
|
}
|
|
@@ -883,12 +922,21 @@ video {
|
|
|
883
922
|
.mb-0 {
|
|
884
923
|
margin-bottom: 0px;
|
|
885
924
|
}
|
|
925
|
+
.mb-0\.5 {
|
|
926
|
+
margin-bottom: 0.125rem;
|
|
927
|
+
}
|
|
886
928
|
.mb-1 {
|
|
887
929
|
margin-bottom: 0.25rem;
|
|
888
930
|
}
|
|
931
|
+
.mb-1\.5 {
|
|
932
|
+
margin-bottom: 0.375rem;
|
|
933
|
+
}
|
|
889
934
|
.mb-2 {
|
|
890
935
|
margin-bottom: 0.5rem;
|
|
891
936
|
}
|
|
937
|
+
.mb-2\.5 {
|
|
938
|
+
margin-bottom: 0.625rem;
|
|
939
|
+
}
|
|
892
940
|
.mb-3 {
|
|
893
941
|
margin-bottom: 0.75rem;
|
|
894
942
|
}
|
|
@@ -898,24 +946,48 @@ video {
|
|
|
898
946
|
.mb-6 {
|
|
899
947
|
margin-bottom: 1.5rem;
|
|
900
948
|
}
|
|
949
|
+
.mb-\[10px\] {
|
|
950
|
+
margin-bottom: 10px;
|
|
951
|
+
}
|
|
952
|
+
.mb-\[6px\] {
|
|
953
|
+
margin-bottom: 6px;
|
|
954
|
+
}
|
|
955
|
+
.mb-px {
|
|
956
|
+
margin-bottom: 1px;
|
|
957
|
+
}
|
|
901
958
|
.ml-0 {
|
|
902
959
|
margin-left: 0px;
|
|
903
960
|
}
|
|
904
961
|
.ml-1 {
|
|
905
962
|
margin-left: 0.25rem;
|
|
906
963
|
}
|
|
964
|
+
.ml-1\.5 {
|
|
965
|
+
margin-left: 0.375rem;
|
|
966
|
+
}
|
|
907
967
|
.ml-2 {
|
|
908
968
|
margin-left: 0.5rem;
|
|
909
969
|
}
|
|
970
|
+
.ml-2\.5 {
|
|
971
|
+
margin-left: 0.625rem;
|
|
972
|
+
}
|
|
973
|
+
.ml-3 {
|
|
974
|
+
margin-left: 0.75rem;
|
|
975
|
+
}
|
|
910
976
|
.ml-auto {
|
|
911
977
|
margin-left: auto;
|
|
912
978
|
}
|
|
913
979
|
.mr-1 {
|
|
914
980
|
margin-right: 0.25rem;
|
|
915
981
|
}
|
|
982
|
+
.mr-1\.5 {
|
|
983
|
+
margin-right: 0.375rem;
|
|
984
|
+
}
|
|
916
985
|
.mr-2 {
|
|
917
986
|
margin-right: 0.5rem;
|
|
918
987
|
}
|
|
988
|
+
.mr-2\.5 {
|
|
989
|
+
margin-right: 0.625rem;
|
|
990
|
+
}
|
|
919
991
|
.mr-4 {
|
|
920
992
|
margin-right: 1rem;
|
|
921
993
|
}
|
|
@@ -928,6 +1000,9 @@ video {
|
|
|
928
1000
|
.mt-1 {
|
|
929
1001
|
margin-top: 0.25rem;
|
|
930
1002
|
}
|
|
1003
|
+
.mt-1\.5 {
|
|
1004
|
+
margin-top: 0.375rem;
|
|
1005
|
+
}
|
|
931
1006
|
.mt-2 {
|
|
932
1007
|
margin-top: 0.5rem;
|
|
933
1008
|
}
|
|
@@ -979,6 +1054,9 @@ video {
|
|
|
979
1054
|
.inline-flex {
|
|
980
1055
|
display: inline-flex;
|
|
981
1056
|
}
|
|
1057
|
+
.table {
|
|
1058
|
+
display: table;
|
|
1059
|
+
}
|
|
982
1060
|
.grid {
|
|
983
1061
|
display: grid;
|
|
984
1062
|
}
|
|
@@ -1039,6 +1117,9 @@ video {
|
|
|
1039
1117
|
.h-3 {
|
|
1040
1118
|
height: 0.75rem;
|
|
1041
1119
|
}
|
|
1120
|
+
.h-32 {
|
|
1121
|
+
height: 8rem;
|
|
1122
|
+
}
|
|
1042
1123
|
.h-4 {
|
|
1043
1124
|
height: 1rem;
|
|
1044
1125
|
}
|
|
@@ -1063,33 +1144,45 @@ video {
|
|
|
1063
1144
|
.h-9 {
|
|
1064
1145
|
height: 2.25rem;
|
|
1065
1146
|
}
|
|
1147
|
+
.h-\[120px\] {
|
|
1148
|
+
height: 120px;
|
|
1149
|
+
}
|
|
1066
1150
|
.h-\[130px\] {
|
|
1067
1151
|
height: 130px;
|
|
1068
1152
|
}
|
|
1069
|
-
.h-\[16px\] {
|
|
1070
|
-
height: 16px;
|
|
1071
|
-
}
|
|
1072
1153
|
.h-\[1px\] {
|
|
1073
1154
|
height: 1px;
|
|
1074
1155
|
}
|
|
1156
|
+
.h-\[2\.5px\] {
|
|
1157
|
+
height: 2.5px;
|
|
1158
|
+
}
|
|
1075
1159
|
.h-\[22px\] {
|
|
1076
1160
|
height: 22px;
|
|
1077
1161
|
}
|
|
1078
|
-
.h-\[30px\] {
|
|
1079
|
-
height: 30px;
|
|
1080
|
-
}
|
|
1081
1162
|
.h-\[30vh\] {
|
|
1082
1163
|
height: 30vh;
|
|
1083
1164
|
}
|
|
1165
|
+
.h-\[350px\] {
|
|
1166
|
+
height: 350px;
|
|
1167
|
+
}
|
|
1084
1168
|
.h-\[38px\] {
|
|
1085
1169
|
height: 38px;
|
|
1086
1170
|
}
|
|
1171
|
+
.h-\[3px\] {
|
|
1172
|
+
height: 3px;
|
|
1173
|
+
}
|
|
1087
1174
|
.h-\[4px\] {
|
|
1088
1175
|
height: 4px;
|
|
1089
1176
|
}
|
|
1090
1177
|
.h-\[56px\] {
|
|
1091
1178
|
height: 56px;
|
|
1092
1179
|
}
|
|
1180
|
+
.h-\[66px\] {
|
|
1181
|
+
height: 66px;
|
|
1182
|
+
}
|
|
1183
|
+
.h-\[68px\] {
|
|
1184
|
+
height: 68px;
|
|
1185
|
+
}
|
|
1093
1186
|
.h-\[80vh\] {
|
|
1094
1187
|
height: 80vh;
|
|
1095
1188
|
}
|
|
@@ -1118,9 +1211,45 @@ video {
|
|
|
1118
1211
|
.max-h-screen {
|
|
1119
1212
|
max-height: 100vh;
|
|
1120
1213
|
}
|
|
1214
|
+
.min-h-11 {
|
|
1215
|
+
min-height: 2.75rem;
|
|
1216
|
+
}
|
|
1217
|
+
.min-h-16 {
|
|
1218
|
+
min-height: 4rem;
|
|
1219
|
+
}
|
|
1220
|
+
.min-h-5 {
|
|
1221
|
+
min-height: 1.25rem;
|
|
1222
|
+
}
|
|
1223
|
+
.min-h-6 {
|
|
1224
|
+
min-height: 1.5rem;
|
|
1225
|
+
}
|
|
1226
|
+
.min-h-\[100px\] {
|
|
1227
|
+
min-height: 100px;
|
|
1228
|
+
}
|
|
1229
|
+
.min-h-\[150px\] {
|
|
1230
|
+
min-height: 150px;
|
|
1231
|
+
}
|
|
1232
|
+
.min-h-\[210px\] {
|
|
1233
|
+
min-height: 210px;
|
|
1234
|
+
}
|
|
1121
1235
|
.min-h-\[24px\] {
|
|
1122
1236
|
min-height: 24px;
|
|
1123
1237
|
}
|
|
1238
|
+
.min-h-\[36px\] {
|
|
1239
|
+
min-height: 36px;
|
|
1240
|
+
}
|
|
1241
|
+
.min-h-\[400px\] {
|
|
1242
|
+
min-height: 400px;
|
|
1243
|
+
}
|
|
1244
|
+
.min-h-\[40px\] {
|
|
1245
|
+
min-height: 40px;
|
|
1246
|
+
}
|
|
1247
|
+
.min-h-\[44px\] {
|
|
1248
|
+
min-height: 44px;
|
|
1249
|
+
}
|
|
1250
|
+
.min-h-\[60px\] {
|
|
1251
|
+
min-height: 60px;
|
|
1252
|
+
}
|
|
1124
1253
|
.min-h-screen {
|
|
1125
1254
|
min-height: 100vh;
|
|
1126
1255
|
}
|
|
@@ -1145,6 +1274,9 @@ video {
|
|
|
1145
1274
|
.w-10 {
|
|
1146
1275
|
width: 2.5rem;
|
|
1147
1276
|
}
|
|
1277
|
+
.w-11 {
|
|
1278
|
+
width: 2.75rem;
|
|
1279
|
+
}
|
|
1148
1280
|
.w-12 {
|
|
1149
1281
|
width: 3rem;
|
|
1150
1282
|
}
|
|
@@ -1163,12 +1295,18 @@ video {
|
|
|
1163
1295
|
.w-2\/3 {
|
|
1164
1296
|
width: 66.666667%;
|
|
1165
1297
|
}
|
|
1298
|
+
.w-2\/5 {
|
|
1299
|
+
width: 40%;
|
|
1300
|
+
}
|
|
1166
1301
|
.w-20 {
|
|
1167
1302
|
width: 5rem;
|
|
1168
1303
|
}
|
|
1169
1304
|
.w-3\/4 {
|
|
1170
1305
|
width: 75%;
|
|
1171
1306
|
}
|
|
1307
|
+
.w-3\/5 {
|
|
1308
|
+
width: 60%;
|
|
1309
|
+
}
|
|
1172
1310
|
.w-32 {
|
|
1173
1311
|
width: 8rem;
|
|
1174
1312
|
}
|
|
@@ -1193,23 +1331,35 @@ video {
|
|
|
1193
1331
|
.w-9 {
|
|
1194
1332
|
width: 2.25rem;
|
|
1195
1333
|
}
|
|
1334
|
+
.w-\[110px\] {
|
|
1335
|
+
width: 110px;
|
|
1336
|
+
}
|
|
1337
|
+
.w-\[120\%\] {
|
|
1338
|
+
width: 120%;
|
|
1339
|
+
}
|
|
1196
1340
|
.w-\[138px\] {
|
|
1197
1341
|
width: 138px;
|
|
1198
1342
|
}
|
|
1199
|
-
.w-\[16px\] {
|
|
1200
|
-
width: 16px;
|
|
1201
|
-
}
|
|
1202
1343
|
.w-\[1px\] {
|
|
1203
1344
|
width: 1px;
|
|
1204
1345
|
}
|
|
1346
|
+
.w-\[2\.5px\] {
|
|
1347
|
+
width: 2.5px;
|
|
1348
|
+
}
|
|
1205
1349
|
.w-\[22px\] {
|
|
1206
1350
|
width: 22px;
|
|
1207
1351
|
}
|
|
1352
|
+
.w-\[30\%\] {
|
|
1353
|
+
width: 30%;
|
|
1354
|
+
}
|
|
1355
|
+
.w-\[300px\] {
|
|
1356
|
+
width: 300px;
|
|
1357
|
+
}
|
|
1208
1358
|
.w-\[40px\] {
|
|
1209
1359
|
width: 40px;
|
|
1210
1360
|
}
|
|
1211
|
-
.w-\[
|
|
1212
|
-
width:
|
|
1361
|
+
.w-\[65\%\] {
|
|
1362
|
+
width: 65%;
|
|
1213
1363
|
}
|
|
1214
1364
|
.w-auto {
|
|
1215
1365
|
width: auto;
|
|
@@ -1237,6 +1387,9 @@ video {
|
|
|
1237
1387
|
.min-w-16 {
|
|
1238
1388
|
min-width: 4rem;
|
|
1239
1389
|
}
|
|
1390
|
+
.min-w-6 {
|
|
1391
|
+
min-width: 1.5rem;
|
|
1392
|
+
}
|
|
1240
1393
|
.min-w-\[8rem\] {
|
|
1241
1394
|
min-width: 8rem;
|
|
1242
1395
|
}
|
|
@@ -1244,6 +1397,18 @@ video {
|
|
|
1244
1397
|
min-width: -moz-fit-content;
|
|
1245
1398
|
min-width: fit-content;
|
|
1246
1399
|
}
|
|
1400
|
+
.max-w-\[140px\] {
|
|
1401
|
+
max-width: 140px;
|
|
1402
|
+
}
|
|
1403
|
+
.max-w-\[198px\] {
|
|
1404
|
+
max-width: 198px;
|
|
1405
|
+
}
|
|
1406
|
+
.max-w-\[5rem\] {
|
|
1407
|
+
max-width: 5rem;
|
|
1408
|
+
}
|
|
1409
|
+
.max-w-\[75\%\] {
|
|
1410
|
+
max-width: 75%;
|
|
1411
|
+
}
|
|
1247
1412
|
.max-w-full {
|
|
1248
1413
|
max-width: 100%;
|
|
1249
1414
|
}
|
|
@@ -1256,6 +1421,9 @@ video {
|
|
|
1256
1421
|
.flex-1 {
|
|
1257
1422
|
flex: 1 1 0%;
|
|
1258
1423
|
}
|
|
1424
|
+
.flex-\[0_0_226px\] {
|
|
1425
|
+
flex: 0 0 226px;
|
|
1426
|
+
}
|
|
1259
1427
|
.flex-none {
|
|
1260
1428
|
flex: none;
|
|
1261
1429
|
}
|
|
@@ -1280,12 +1448,21 @@ video {
|
|
|
1280
1448
|
.basis-3\/4 {
|
|
1281
1449
|
flex-basis: 75%;
|
|
1282
1450
|
}
|
|
1451
|
+
.basis-\[300px\] {
|
|
1452
|
+
flex-basis: 300px;
|
|
1453
|
+
}
|
|
1283
1454
|
.basis-full {
|
|
1284
1455
|
flex-basis: 100%;
|
|
1285
1456
|
}
|
|
1457
|
+
.border-collapse {
|
|
1458
|
+
border-collapse: collapse;
|
|
1459
|
+
}
|
|
1286
1460
|
.origin-\[0\] {
|
|
1287
1461
|
transform-origin: 0;
|
|
1288
1462
|
}
|
|
1463
|
+
.origin-center {
|
|
1464
|
+
transform-origin: center;
|
|
1465
|
+
}
|
|
1289
1466
|
.-translate-x-1\/2 {
|
|
1290
1467
|
--tw-translate-x: -50%;
|
|
1291
1468
|
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));
|
|
@@ -1314,6 +1491,10 @@ video {
|
|
|
1314
1491
|
--tw-translate-y: -50%;
|
|
1315
1492
|
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));
|
|
1316
1493
|
}
|
|
1494
|
+
.-rotate-45 {
|
|
1495
|
+
--tw-rotate: -45deg;
|
|
1496
|
+
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));
|
|
1497
|
+
}
|
|
1317
1498
|
.rotate-0 {
|
|
1318
1499
|
--tw-rotate: 0deg;
|
|
1319
1500
|
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));
|
|
@@ -1340,6 +1521,11 @@ video {
|
|
|
1340
1521
|
--tw-scale-y: 1;
|
|
1341
1522
|
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));
|
|
1342
1523
|
}
|
|
1524
|
+
.scale-125 {
|
|
1525
|
+
--tw-scale-x: 1.25;
|
|
1526
|
+
--tw-scale-y: 1.25;
|
|
1527
|
+
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));
|
|
1528
|
+
}
|
|
1343
1529
|
.transform {
|
|
1344
1530
|
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));
|
|
1345
1531
|
}
|
|
@@ -1411,6 +1597,9 @@ video {
|
|
|
1411
1597
|
.cursor-default {
|
|
1412
1598
|
cursor: default;
|
|
1413
1599
|
}
|
|
1600
|
+
.cursor-not-allowed {
|
|
1601
|
+
cursor: not-allowed;
|
|
1602
|
+
}
|
|
1414
1603
|
.cursor-pointer {
|
|
1415
1604
|
cursor: pointer;
|
|
1416
1605
|
}
|
|
@@ -1420,6 +1609,13 @@ video {
|
|
|
1420
1609
|
.touch-none {
|
|
1421
1610
|
touch-action: none;
|
|
1422
1611
|
}
|
|
1612
|
+
.touch-pan-y {
|
|
1613
|
+
--tw-pan-y: pan-y;
|
|
1614
|
+
touch-action: var(--tw-pan-x) var(--tw-pan-y) var(--tw-pinch-zoom);
|
|
1615
|
+
}
|
|
1616
|
+
.touch-manipulation {
|
|
1617
|
+
touch-action: manipulation;
|
|
1618
|
+
}
|
|
1423
1619
|
.select-none {
|
|
1424
1620
|
-webkit-user-select: none;
|
|
1425
1621
|
-moz-user-select: none;
|
|
@@ -1482,6 +1678,9 @@ video {
|
|
|
1482
1678
|
.flex-wrap {
|
|
1483
1679
|
flex-wrap: wrap;
|
|
1484
1680
|
}
|
|
1681
|
+
.flex-nowrap {
|
|
1682
|
+
flex-wrap: nowrap;
|
|
1683
|
+
}
|
|
1485
1684
|
.items-start {
|
|
1486
1685
|
align-items: flex-start;
|
|
1487
1686
|
}
|
|
@@ -1494,9 +1693,6 @@ video {
|
|
|
1494
1693
|
.items-baseline {
|
|
1495
1694
|
align-items: baseline;
|
|
1496
1695
|
}
|
|
1497
|
-
.items-stretch {
|
|
1498
|
-
align-items: stretch;
|
|
1499
|
-
}
|
|
1500
1696
|
.justify-start {
|
|
1501
1697
|
justify-content: flex-start;
|
|
1502
1698
|
}
|
|
@@ -1515,12 +1711,21 @@ video {
|
|
|
1515
1711
|
.justify-evenly {
|
|
1516
1712
|
justify-content: space-evenly;
|
|
1517
1713
|
}
|
|
1714
|
+
.justify-items-center {
|
|
1715
|
+
justify-items: center;
|
|
1716
|
+
}
|
|
1518
1717
|
.gap-0 {
|
|
1519
1718
|
gap: 0px;
|
|
1520
1719
|
}
|
|
1521
1720
|
.gap-1 {
|
|
1522
1721
|
gap: 0.25rem;
|
|
1523
1722
|
}
|
|
1723
|
+
.gap-1\.5 {
|
|
1724
|
+
gap: 0.375rem;
|
|
1725
|
+
}
|
|
1726
|
+
.gap-10 {
|
|
1727
|
+
gap: 2.5rem;
|
|
1728
|
+
}
|
|
1524
1729
|
.gap-2 {
|
|
1525
1730
|
gap: 0.5rem;
|
|
1526
1731
|
}
|
|
@@ -1563,6 +1768,11 @@ video {
|
|
|
1563
1768
|
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
1564
1769
|
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1565
1770
|
}
|
|
1771
|
+
.space-x-3 > :not([hidden]) ~ :not([hidden]) {
|
|
1772
|
+
--tw-space-x-reverse: 0;
|
|
1773
|
+
margin-right: calc(0.75rem * var(--tw-space-x-reverse));
|
|
1774
|
+
margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1775
|
+
}
|
|
1566
1776
|
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
|
|
1567
1777
|
--tw-space-x-reverse: 0;
|
|
1568
1778
|
margin-right: calc(1rem * var(--tw-space-x-reverse));
|
|
@@ -1583,6 +1793,11 @@ video {
|
|
|
1583
1793
|
margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1584
1794
|
margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
|
|
1585
1795
|
}
|
|
1796
|
+
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
|
|
1797
|
+
--tw-space-y-reverse: 0;
|
|
1798
|
+
margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1799
|
+
margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
|
|
1800
|
+
}
|
|
1586
1801
|
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
|
|
1587
1802
|
--tw-space-y-reverse: 0;
|
|
1588
1803
|
margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
|
|
@@ -1597,6 +1812,9 @@ video {
|
|
|
1597
1812
|
.self-center {
|
|
1598
1813
|
align-self: center;
|
|
1599
1814
|
}
|
|
1815
|
+
.overflow-auto {
|
|
1816
|
+
overflow: auto;
|
|
1817
|
+
}
|
|
1600
1818
|
.overflow-hidden {
|
|
1601
1819
|
overflow: hidden;
|
|
1602
1820
|
}
|
|
@@ -1612,9 +1830,15 @@ video {
|
|
|
1612
1830
|
.overflow-y-auto {
|
|
1613
1831
|
overflow-y: auto;
|
|
1614
1832
|
}
|
|
1833
|
+
.overflow-x-hidden {
|
|
1834
|
+
overflow-x: hidden;
|
|
1835
|
+
}
|
|
1615
1836
|
.overflow-y-hidden {
|
|
1616
1837
|
overflow-y: hidden;
|
|
1617
1838
|
}
|
|
1839
|
+
.overflow-y-scroll {
|
|
1840
|
+
overflow-y: scroll;
|
|
1841
|
+
}
|
|
1618
1842
|
.truncate {
|
|
1619
1843
|
overflow: hidden;
|
|
1620
1844
|
text-overflow: ellipsis;
|
|
@@ -1623,12 +1847,18 @@ video {
|
|
|
1623
1847
|
.text-ellipsis {
|
|
1624
1848
|
text-overflow: ellipsis;
|
|
1625
1849
|
}
|
|
1850
|
+
.whitespace-normal {
|
|
1851
|
+
white-space: normal;
|
|
1852
|
+
}
|
|
1626
1853
|
.whitespace-nowrap {
|
|
1627
1854
|
white-space: nowrap;
|
|
1628
1855
|
}
|
|
1629
1856
|
.text-wrap {
|
|
1630
1857
|
text-wrap: wrap;
|
|
1631
1858
|
}
|
|
1859
|
+
.break-words {
|
|
1860
|
+
overflow-wrap: break-word;
|
|
1861
|
+
}
|
|
1632
1862
|
.break-all {
|
|
1633
1863
|
word-break: break-all;
|
|
1634
1864
|
}
|
|
@@ -1638,6 +1868,12 @@ video {
|
|
|
1638
1868
|
.rounded-2xl {
|
|
1639
1869
|
border-radius: 1rem;
|
|
1640
1870
|
}
|
|
1871
|
+
.rounded-\[20px\] {
|
|
1872
|
+
border-radius: 20px;
|
|
1873
|
+
}
|
|
1874
|
+
.rounded-\[38px\] {
|
|
1875
|
+
border-radius: 38px;
|
|
1876
|
+
}
|
|
1641
1877
|
.rounded-\[4px\] {
|
|
1642
1878
|
border-radius: 4px;
|
|
1643
1879
|
}
|
|
@@ -1685,12 +1921,18 @@ video {
|
|
|
1685
1921
|
.rounded-tl-2xl {
|
|
1686
1922
|
border-top-left-radius: 1rem;
|
|
1687
1923
|
}
|
|
1924
|
+
.rounded-tl-\[32px\] {
|
|
1925
|
+
border-top-left-radius: 32px;
|
|
1926
|
+
}
|
|
1688
1927
|
.rounded-tr {
|
|
1689
1928
|
border-top-right-radius: 0.25rem;
|
|
1690
1929
|
}
|
|
1691
1930
|
.rounded-tr-2xl {
|
|
1692
1931
|
border-top-right-radius: 1rem;
|
|
1693
1932
|
}
|
|
1933
|
+
.rounded-tr-\[32px\] {
|
|
1934
|
+
border-top-right-radius: 32px;
|
|
1935
|
+
}
|
|
1694
1936
|
.border {
|
|
1695
1937
|
border-width: 1px;
|
|
1696
1938
|
}
|
|
@@ -1744,6 +1986,26 @@ video {
|
|
|
1744
1986
|
.\!border-stateColors-error {
|
|
1745
1987
|
border-color: var(--stateColors-error) !important;
|
|
1746
1988
|
}
|
|
1989
|
+
.border-\[\#DDDDDD\] {
|
|
1990
|
+
--tw-border-opacity: 1;
|
|
1991
|
+
border-color: rgb(221 221 221 / var(--tw-border-opacity, 1));
|
|
1992
|
+
}
|
|
1993
|
+
.border-\[\#E3E3E3\] {
|
|
1994
|
+
--tw-border-opacity: 1;
|
|
1995
|
+
border-color: rgb(227 227 227 / var(--tw-border-opacity, 1));
|
|
1996
|
+
}
|
|
1997
|
+
.border-\[\#a9a71d\] {
|
|
1998
|
+
--tw-border-opacity: 1;
|
|
1999
|
+
border-color: rgb(169 167 29 / var(--tw-border-opacity, 1));
|
|
2000
|
+
}
|
|
2001
|
+
.border-\[\#e3e3e3\] {
|
|
2002
|
+
--tw-border-opacity: 1;
|
|
2003
|
+
border-color: rgb(227 227 227 / var(--tw-border-opacity, 1));
|
|
2004
|
+
}
|
|
2005
|
+
.border-\[\#e5e5e5\] {
|
|
2006
|
+
--tw-border-opacity: 1;
|
|
2007
|
+
border-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
|
|
2008
|
+
}
|
|
1747
2009
|
.border-black {
|
|
1748
2010
|
--tw-border-opacity: 1;
|
|
1749
2011
|
border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
|
|
@@ -1773,10 +2035,18 @@ video {
|
|
|
1773
2035
|
.border-transparent {
|
|
1774
2036
|
border-color: transparent;
|
|
1775
2037
|
}
|
|
2038
|
+
.border-white {
|
|
2039
|
+
--tw-border-opacity: 1;
|
|
2040
|
+
border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
|
|
2041
|
+
}
|
|
1776
2042
|
.border-y-transparent {
|
|
1777
2043
|
border-top-color: transparent;
|
|
1778
2044
|
border-bottom-color: transparent;
|
|
1779
2045
|
}
|
|
2046
|
+
.border-b-\[\#e5e5e5\] {
|
|
2047
|
+
--tw-border-opacity: 1;
|
|
2048
|
+
border-bottom-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
|
|
2049
|
+
}
|
|
1780
2050
|
.border-l-transparent {
|
|
1781
2051
|
border-left-color: transparent;
|
|
1782
2052
|
}
|
|
@@ -1791,6 +2061,20 @@ video {
|
|
|
1791
2061
|
--tw-bg-opacity: 1;
|
|
1792
2062
|
background-color: rgb(97 46 255 / var(--tw-bg-opacity, 1));
|
|
1793
2063
|
}
|
|
2064
|
+
.bg-\[\#F0F0F0\] {
|
|
2065
|
+
--tw-bg-opacity: 1;
|
|
2066
|
+
background-color: rgb(240 240 240 / var(--tw-bg-opacity, 1));
|
|
2067
|
+
}
|
|
2068
|
+
.bg-\[\#fdffda\] {
|
|
2069
|
+
--tw-bg-opacity: 1;
|
|
2070
|
+
background-color: rgb(253 255 218 / var(--tw-bg-opacity, 1));
|
|
2071
|
+
}
|
|
2072
|
+
.bg-\[var\(--coreColors-pageColor\2c \#ffffff\)\] {
|
|
2073
|
+
background-color: var(--coreColors-pageColor,#ffffff);
|
|
2074
|
+
}
|
|
2075
|
+
.bg-\[var\(--stateColors-skeleton\)\] {
|
|
2076
|
+
background-color: var(--stateColors-skeleton);
|
|
2077
|
+
}
|
|
1794
2078
|
.bg-background {
|
|
1795
2079
|
background-color: hsl(var(--background));
|
|
1796
2080
|
}
|
|
@@ -1798,6 +2082,9 @@ video {
|
|
|
1798
2082
|
--tw-bg-opacity: 1;
|
|
1799
2083
|
background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
|
|
1800
2084
|
}
|
|
2085
|
+
.bg-black\/40 {
|
|
2086
|
+
background-color: rgb(0 0 0 / 0.4);
|
|
2087
|
+
}
|
|
1801
2088
|
.bg-black\/75 {
|
|
1802
2089
|
background-color: rgb(0 0 0 / 0.75);
|
|
1803
2090
|
}
|
|
@@ -1828,6 +2115,9 @@ video {
|
|
|
1828
2115
|
.bg-coreColors-pageColor {
|
|
1829
2116
|
background-color: var(--coreColors-pageColor);
|
|
1830
2117
|
}
|
|
2118
|
+
.bg-current {
|
|
2119
|
+
background-color: currentColor;
|
|
2120
|
+
}
|
|
1831
2121
|
.bg-foreground {
|
|
1832
2122
|
background-color: hsl(var(--foreground));
|
|
1833
2123
|
}
|
|
@@ -1843,6 +2133,10 @@ video {
|
|
|
1843
2133
|
--tw-bg-opacity: 1;
|
|
1844
2134
|
background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
|
|
1845
2135
|
}
|
|
2136
|
+
.bg-green-500 {
|
|
2137
|
+
--tw-bg-opacity: 1;
|
|
2138
|
+
background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
|
|
2139
|
+
}
|
|
1846
2140
|
.bg-productBadging-fill {
|
|
1847
2141
|
background-color: var(--productBadging-fill);
|
|
1848
2142
|
}
|
|
@@ -1878,6 +2172,9 @@ video {
|
|
|
1878
2172
|
.bg-opacity-70 {
|
|
1879
2173
|
--tw-bg-opacity: 0.7;
|
|
1880
2174
|
}
|
|
2175
|
+
.bg-\[linear-gradient\(180deg\2c _\#FFF_0\%\2c _rgba\(255\2c 255\2c 255\2c 0\.94\)_20\.19\%\2c _rgba\(255\2c 255\2c 255\2c 0\.65\)_64\.9\%\2c _rgba\(255\2c 255\2c 255\2c 0\.00\)_100\%\)\] {
|
|
2176
|
+
background-image: linear-gradient(180deg, #FFF 0%, rgba(255,255,255,0.94) 20.19%, rgba(255,255,255,0.65) 64.9%, rgba(255,255,255,0.00) 100%);
|
|
2177
|
+
}
|
|
1881
2178
|
.bg-fade-left {
|
|
1882
2179
|
background-image: linear-gradient(to right, var(--coreColors-pageColor) 0%, #ffffff00 100%);;
|
|
1883
2180
|
}
|
|
@@ -1916,6 +2213,10 @@ video {
|
|
|
1916
2213
|
-o-object-position: center;
|
|
1917
2214
|
object-position: center;
|
|
1918
2215
|
}
|
|
2216
|
+
.object-top {
|
|
2217
|
+
-o-object-position: top;
|
|
2218
|
+
object-position: top;
|
|
2219
|
+
}
|
|
1919
2220
|
.p-0 {
|
|
1920
2221
|
padding: 0px;
|
|
1921
2222
|
}
|
|
@@ -1931,12 +2232,18 @@ video {
|
|
|
1931
2232
|
.p-4 {
|
|
1932
2233
|
padding: 1rem;
|
|
1933
2234
|
}
|
|
2235
|
+
.p-5 {
|
|
2236
|
+
padding: 1.25rem;
|
|
2237
|
+
}
|
|
1934
2238
|
.p-6 {
|
|
1935
2239
|
padding: 1.5rem;
|
|
1936
2240
|
}
|
|
1937
2241
|
.p-\[1px\] {
|
|
1938
2242
|
padding: 1px;
|
|
1939
2243
|
}
|
|
2244
|
+
.p-\[2\.5px\] {
|
|
2245
|
+
padding: 2.5px;
|
|
2246
|
+
}
|
|
1940
2247
|
.px-0 {
|
|
1941
2248
|
padding-left: 0px;
|
|
1942
2249
|
padding-right: 0px;
|
|
@@ -1945,6 +2252,10 @@ video {
|
|
|
1945
2252
|
padding-left: 0.25rem;
|
|
1946
2253
|
padding-right: 0.25rem;
|
|
1947
2254
|
}
|
|
2255
|
+
.px-1\.5 {
|
|
2256
|
+
padding-left: 0.375rem;
|
|
2257
|
+
padding-right: 0.375rem;
|
|
2258
|
+
}
|
|
1948
2259
|
.px-2 {
|
|
1949
2260
|
padding-left: 0.5rem;
|
|
1950
2261
|
padding-right: 0.5rem;
|
|
@@ -1973,14 +2284,26 @@ video {
|
|
|
1973
2284
|
padding-left: 2rem;
|
|
1974
2285
|
padding-right: 2rem;
|
|
1975
2286
|
}
|
|
2287
|
+
.px-\[7px\] {
|
|
2288
|
+
padding-left: 7px;
|
|
2289
|
+
padding-right: 7px;
|
|
2290
|
+
}
|
|
1976
2291
|
.py-0 {
|
|
1977
2292
|
padding-top: 0px;
|
|
1978
2293
|
padding-bottom: 0px;
|
|
1979
2294
|
}
|
|
2295
|
+
.py-0\.5 {
|
|
2296
|
+
padding-top: 0.125rem;
|
|
2297
|
+
padding-bottom: 0.125rem;
|
|
2298
|
+
}
|
|
1980
2299
|
.py-1 {
|
|
1981
2300
|
padding-top: 0.25rem;
|
|
1982
2301
|
padding-bottom: 0.25rem;
|
|
1983
2302
|
}
|
|
2303
|
+
.py-10 {
|
|
2304
|
+
padding-top: 2.5rem;
|
|
2305
|
+
padding-bottom: 2.5rem;
|
|
2306
|
+
}
|
|
1984
2307
|
.py-12 {
|
|
1985
2308
|
padding-top: 3rem;
|
|
1986
2309
|
padding-bottom: 3rem;
|
|
@@ -1989,6 +2312,10 @@ video {
|
|
|
1989
2312
|
padding-top: 0.5rem;
|
|
1990
2313
|
padding-bottom: 0.5rem;
|
|
1991
2314
|
}
|
|
2315
|
+
.py-2\.5 {
|
|
2316
|
+
padding-top: 0.625rem;
|
|
2317
|
+
padding-bottom: 0.625rem;
|
|
2318
|
+
}
|
|
1992
2319
|
.py-3 {
|
|
1993
2320
|
padding-top: 0.75rem;
|
|
1994
2321
|
padding-bottom: 0.75rem;
|
|
@@ -1997,12 +2324,19 @@ video {
|
|
|
1997
2324
|
padding-top: 1rem;
|
|
1998
2325
|
padding-bottom: 1rem;
|
|
1999
2326
|
}
|
|
2327
|
+
.py-8 {
|
|
2328
|
+
padding-top: 2rem;
|
|
2329
|
+
padding-bottom: 2rem;
|
|
2330
|
+
}
|
|
2000
2331
|
.pb-0 {
|
|
2001
2332
|
padding-bottom: 0px;
|
|
2002
2333
|
}
|
|
2003
2334
|
.pb-1 {
|
|
2004
2335
|
padding-bottom: 0.25rem;
|
|
2005
2336
|
}
|
|
2337
|
+
.pb-10 {
|
|
2338
|
+
padding-bottom: 2.5rem;
|
|
2339
|
+
}
|
|
2006
2340
|
.pb-2 {
|
|
2007
2341
|
padding-bottom: 0.5rem;
|
|
2008
2342
|
}
|
|
@@ -2015,6 +2349,9 @@ video {
|
|
|
2015
2349
|
.pb-8 {
|
|
2016
2350
|
padding-bottom: 2rem;
|
|
2017
2351
|
}
|
|
2352
|
+
.pb-\[50px\] {
|
|
2353
|
+
padding-bottom: 50px;
|
|
2354
|
+
}
|
|
2018
2355
|
.pl-0 {
|
|
2019
2356
|
padding-left: 0px;
|
|
2020
2357
|
}
|
|
@@ -2024,15 +2361,18 @@ video {
|
|
|
2024
2361
|
.pl-2 {
|
|
2025
2362
|
padding-left: 0.5rem;
|
|
2026
2363
|
}
|
|
2027
|
-
.pl-3 {
|
|
2028
|
-
padding-left: 0.75rem;
|
|
2029
|
-
}
|
|
2030
2364
|
.pl-4 {
|
|
2031
2365
|
padding-left: 1rem;
|
|
2032
2366
|
}
|
|
2033
2367
|
.pl-8 {
|
|
2034
2368
|
padding-left: 2rem;
|
|
2035
2369
|
}
|
|
2370
|
+
.pl-\[10px\] {
|
|
2371
|
+
padding-left: 10px;
|
|
2372
|
+
}
|
|
2373
|
+
.pl-\[9px\] {
|
|
2374
|
+
padding-left: 9px;
|
|
2375
|
+
}
|
|
2036
2376
|
.pr-0 {
|
|
2037
2377
|
padding-right: 0px;
|
|
2038
2378
|
}
|
|
@@ -2048,12 +2388,21 @@ video {
|
|
|
2048
2388
|
.pt-0 {
|
|
2049
2389
|
padding-top: 0px;
|
|
2050
2390
|
}
|
|
2391
|
+
.pt-1 {
|
|
2392
|
+
padding-top: 0.25rem;
|
|
2393
|
+
}
|
|
2394
|
+
.pt-10 {
|
|
2395
|
+
padding-top: 2.5rem;
|
|
2396
|
+
}
|
|
2051
2397
|
.pt-12 {
|
|
2052
2398
|
padding-top: 3rem;
|
|
2053
2399
|
}
|
|
2054
2400
|
.pt-2 {
|
|
2055
2401
|
padding-top: 0.5rem;
|
|
2056
2402
|
}
|
|
2403
|
+
.pt-3 {
|
|
2404
|
+
padding-top: 0.75rem;
|
|
2405
|
+
}
|
|
2057
2406
|
.pt-4 {
|
|
2058
2407
|
padding-top: 1rem;
|
|
2059
2408
|
}
|
|
@@ -2078,6 +2427,9 @@ video {
|
|
|
2078
2427
|
.align-top {
|
|
2079
2428
|
vertical-align: top;
|
|
2080
2429
|
}
|
|
2430
|
+
.font-\[-apple-system\2c BlinkMacSystemFont\2c Roboto\2c Helvetica\2c Arial\2c sans-serif\] {
|
|
2431
|
+
font-family: -apple-system,BlinkMacSystemFont,Roboto,Helvetica,Arial,sans-serif;
|
|
2432
|
+
}
|
|
2081
2433
|
.font-fontRegular {
|
|
2082
2434
|
font-family: var(--fontRegular);
|
|
2083
2435
|
}
|
|
@@ -2085,12 +2437,21 @@ video {
|
|
|
2085
2437
|
font-size: 3rem;
|
|
2086
2438
|
line-height: 1;
|
|
2087
2439
|
}
|
|
2440
|
+
.text-\[0\.95rem\] {
|
|
2441
|
+
font-size: 0.95rem;
|
|
2442
|
+
}
|
|
2088
2443
|
.text-\[10px\] {
|
|
2089
2444
|
font-size: 10px;
|
|
2090
2445
|
}
|
|
2446
|
+
.text-\[11px\] {
|
|
2447
|
+
font-size: 11px;
|
|
2448
|
+
}
|
|
2091
2449
|
.text-\[12px\] {
|
|
2092
2450
|
font-size: 12px;
|
|
2093
2451
|
}
|
|
2452
|
+
.text-\[13px\] {
|
|
2453
|
+
font-size: 13px;
|
|
2454
|
+
}
|
|
2094
2455
|
.text-\[14px\] {
|
|
2095
2456
|
font-size: 14px;
|
|
2096
2457
|
}
|
|
@@ -2140,12 +2501,18 @@ video {
|
|
|
2140
2501
|
.capitalize {
|
|
2141
2502
|
text-transform: capitalize;
|
|
2142
2503
|
}
|
|
2504
|
+
.normal-case {
|
|
2505
|
+
text-transform: none;
|
|
2506
|
+
}
|
|
2143
2507
|
.italic {
|
|
2144
2508
|
font-style: italic;
|
|
2145
2509
|
}
|
|
2146
2510
|
.leading-6 {
|
|
2147
2511
|
line-height: 1.5rem;
|
|
2148
2512
|
}
|
|
2513
|
+
.leading-\[1\.2\] {
|
|
2514
|
+
line-height: 1.2;
|
|
2515
|
+
}
|
|
2149
2516
|
.leading-\[120\%\] {
|
|
2150
2517
|
line-height: 120%;
|
|
2151
2518
|
}
|
|
@@ -2164,13 +2531,42 @@ video {
|
|
|
2164
2531
|
.leading-none {
|
|
2165
2532
|
line-height: 1;
|
|
2166
2533
|
}
|
|
2534
|
+
.leading-tight {
|
|
2535
|
+
line-height: 1.25;
|
|
2536
|
+
}
|
|
2167
2537
|
.tracking-tight {
|
|
2168
2538
|
letter-spacing: -0.025em;
|
|
2169
2539
|
}
|
|
2540
|
+
.text-\[\#666666\] {
|
|
2541
|
+
--tw-text-opacity: 1;
|
|
2542
|
+
color: rgb(102 102 102 / var(--tw-text-opacity, 1));
|
|
2543
|
+
}
|
|
2544
|
+
.text-\[\#666\] {
|
|
2545
|
+
--tw-text-opacity: 1;
|
|
2546
|
+
color: rgb(102 102 102 / var(--tw-text-opacity, 1));
|
|
2547
|
+
}
|
|
2170
2548
|
.text-\[\#727272\] {
|
|
2171
2549
|
--tw-text-opacity: 1;
|
|
2172
2550
|
color: rgb(114 114 114 / var(--tw-text-opacity, 1));
|
|
2173
2551
|
}
|
|
2552
|
+
.text-\[\#888\] {
|
|
2553
|
+
--tw-text-opacity: 1;
|
|
2554
|
+
color: rgb(136 136 136 / var(--tw-text-opacity, 1));
|
|
2555
|
+
}
|
|
2556
|
+
.text-\[\#999999\] {
|
|
2557
|
+
--tw-text-opacity: 1;
|
|
2558
|
+
color: rgb(153 153 153 / var(--tw-text-opacity, 1));
|
|
2559
|
+
}
|
|
2560
|
+
.text-\[\#9ca3af\] {
|
|
2561
|
+
--tw-text-opacity: 1;
|
|
2562
|
+
color: rgb(156 163 175 / var(--tw-text-opacity, 1));
|
|
2563
|
+
}
|
|
2564
|
+
.text-\[var\(--coreColors-brandColorPrimary\)\] {
|
|
2565
|
+
color: var(--coreColors-brandColorPrimary);
|
|
2566
|
+
}
|
|
2567
|
+
.text-\[var\(--textColors-secondaryColor\)\] {
|
|
2568
|
+
color: var(--textColors-secondaryColor);
|
|
2569
|
+
}
|
|
2174
2570
|
.text-black {
|
|
2175
2571
|
--tw-text-opacity: 1;
|
|
2176
2572
|
color: rgb(0 0 0 / var(--tw-text-opacity, 1));
|
|
@@ -2263,6 +2659,13 @@ video {
|
|
|
2263
2659
|
--tw-text-opacity: 1;
|
|
2264
2660
|
color: rgb(107 114 128 / var(--tw-text-opacity, 1));
|
|
2265
2661
|
}
|
|
2662
|
+
.text-gray-600 {
|
|
2663
|
+
--tw-text-opacity: 1;
|
|
2664
|
+
color: rgb(75 85 99 / var(--tw-text-opacity, 1));
|
|
2665
|
+
}
|
|
2666
|
+
.text-inherit {
|
|
2667
|
+
color: inherit;
|
|
2668
|
+
}
|
|
2266
2669
|
.text-muted-foreground {
|
|
2267
2670
|
color: hsl(var(--muted-foreground));
|
|
2268
2671
|
}
|
|
@@ -2335,6 +2738,9 @@ video {
|
|
|
2335
2738
|
.line-through {
|
|
2336
2739
|
text-decoration-line: line-through;
|
|
2337
2740
|
}
|
|
2741
|
+
.no-underline {
|
|
2742
|
+
text-decoration-line: none;
|
|
2743
|
+
}
|
|
2338
2744
|
.underline-offset-4 {
|
|
2339
2745
|
text-underline-offset: 4px;
|
|
2340
2746
|
}
|
|
@@ -2457,6 +2863,16 @@ video {
|
|
|
2457
2863
|
.filter {
|
|
2458
2864
|
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);
|
|
2459
2865
|
}
|
|
2866
|
+
.backdrop-blur-\[1\.5px\] {
|
|
2867
|
+
--tw-backdrop-blur: blur(1.5px);
|
|
2868
|
+
-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);
|
|
2869
|
+
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);
|
|
2870
|
+
}
|
|
2871
|
+
.backdrop-blur-\[20px\] {
|
|
2872
|
+
--tw-backdrop-blur: blur(20px);
|
|
2873
|
+
-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);
|
|
2874
|
+
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);
|
|
2875
|
+
}
|
|
2460
2876
|
.transition {
|
|
2461
2877
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
|
|
2462
2878
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
@@ -2464,11 +2880,26 @@ video {
|
|
|
2464
2880
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2465
2881
|
transition-duration: 150ms;
|
|
2466
2882
|
}
|
|
2883
|
+
.transition-\[ease-out\] {
|
|
2884
|
+
transition-property: ease-out;
|
|
2885
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2886
|
+
transition-duration: 150ms;
|
|
2887
|
+
}
|
|
2467
2888
|
.transition-\[height\] {
|
|
2468
2889
|
transition-property: height;
|
|
2469
2890
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2470
2891
|
transition-duration: 150ms;
|
|
2471
2892
|
}
|
|
2893
|
+
.transition-\[max-height\] {
|
|
2894
|
+
transition-property: max-height;
|
|
2895
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2896
|
+
transition-duration: 150ms;
|
|
2897
|
+
}
|
|
2898
|
+
.transition-\[width\] {
|
|
2899
|
+
transition-property: width;
|
|
2900
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2901
|
+
transition-duration: 150ms;
|
|
2902
|
+
}
|
|
2472
2903
|
.transition-all {
|
|
2473
2904
|
transition-property: all;
|
|
2474
2905
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -2489,6 +2920,9 @@ video {
|
|
|
2489
2920
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2490
2921
|
transition-duration: 150ms;
|
|
2491
2922
|
}
|
|
2923
|
+
.duration-100 {
|
|
2924
|
+
transition-duration: 100ms;
|
|
2925
|
+
}
|
|
2492
2926
|
.duration-1000 {
|
|
2493
2927
|
transition-duration: 1000ms;
|
|
2494
2928
|
}
|
|
@@ -2510,6 +2944,9 @@ video {
|
|
|
2510
2944
|
.ease-in-out {
|
|
2511
2945
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2512
2946
|
}
|
|
2947
|
+
.ease-linear {
|
|
2948
|
+
transition-timing-function: linear;
|
|
2949
|
+
}
|
|
2513
2950
|
.ease-out {
|
|
2514
2951
|
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
2515
2952
|
}
|
|
@@ -2530,6 +2967,9 @@ video {
|
|
|
2530
2967
|
.fade-in {
|
|
2531
2968
|
--tw-enter-opacity: 0;
|
|
2532
2969
|
}
|
|
2970
|
+
.duration-100 {
|
|
2971
|
+
animation-duration: 100ms;
|
|
2972
|
+
}
|
|
2533
2973
|
.duration-1000 {
|
|
2534
2974
|
animation-duration: 1000ms;
|
|
2535
2975
|
}
|
|
@@ -2551,6 +2991,9 @@ video {
|
|
|
2551
2991
|
.ease-in-out {
|
|
2552
2992
|
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2553
2993
|
}
|
|
2994
|
+
.ease-linear {
|
|
2995
|
+
animation-timing-function: linear;
|
|
2996
|
+
}
|
|
2554
2997
|
.ease-out {
|
|
2555
2998
|
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
2556
2999
|
}
|
|
@@ -2574,14 +3017,24 @@ video {
|
|
|
2574
3017
|
.\[animation-delay\:-0\.3s\] {
|
|
2575
3018
|
animation-delay: -0.3s;
|
|
2576
3019
|
}
|
|
2577
|
-
.\[
|
|
2578
|
-
-
|
|
2579
|
-
-moz-appearance: textfield;
|
|
2580
|
-
appearance: textfield;
|
|
3020
|
+
.\[backface-visibility\:hidden\] {
|
|
3021
|
+
backface-visibility: hidden;
|
|
2581
3022
|
}
|
|
2582
3023
|
.\[scrollbar-width\:none\] {
|
|
2583
3024
|
scrollbar-width: none;
|
|
2584
3025
|
}
|
|
3026
|
+
.\[text-shadow\:0_2px_3px_rgba\(0\2c 0\2c 0\2c 0\.25\)\] {
|
|
3027
|
+
text-shadow: 0 2px 3px rgba(0,0,0,0.25);
|
|
3028
|
+
}
|
|
3029
|
+
.\[text-wrap\:wrap\] {
|
|
3030
|
+
text-wrap: wrap;
|
|
3031
|
+
}
|
|
3032
|
+
.\[transform\:translate3d\(0\2c 0\2c 0\)\] {
|
|
3033
|
+
transform: translate3d(0,0,0);
|
|
3034
|
+
}
|
|
3035
|
+
.\[transform\:translateZ\(0\)\] {
|
|
3036
|
+
transform: translateZ(0);
|
|
3037
|
+
}
|
|
2585
3038
|
|
|
2586
3039
|
body::-webkit-scrollbar {
|
|
2587
3040
|
display: none;
|
|
@@ -3098,16 +3551,6 @@ body::-webkit-scrollbar {
|
|
|
3098
3551
|
color: var(--stateColors-error);
|
|
3099
3552
|
}
|
|
3100
3553
|
|
|
3101
|
-
.\[\&\:\:-webkit-inner-spin-button\]\:appearance-none::-webkit-inner-spin-button {
|
|
3102
|
-
-webkit-appearance: none;
|
|
3103
|
-
appearance: none;
|
|
3104
|
-
}
|
|
3105
|
-
|
|
3106
|
-
.\[\&\:\:-webkit-outer-spin-button\]\:appearance-none::-webkit-outer-spin-button {
|
|
3107
|
-
-webkit-appearance: none;
|
|
3108
|
-
appearance: none;
|
|
3109
|
-
}
|
|
3110
|
-
|
|
3111
3554
|
.\[\&\:\:-webkit-scrollbar\]\:hidden::-webkit-scrollbar {
|
|
3112
3555
|
display: none;
|
|
3113
3556
|
}
|