hds-web 1.9.8 → 1.9.9
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/index.css +2 -2
- package/dist/index.es.css +2 -2
- package/dist/index.es.js +5 -5
- package/dist/index.js +6 -6
- package/package.json +1 -1
- package/src/HDS/components/Cards/Testimonials/testimonial.js +24 -25
- package/src/HDS/components/Cards/VideoCard/homeVC.js +42 -4
- package/src/HDS/helpers/Effects/HoverEffects/card3d.js +74 -0
- package/src/HDS/helpers/Effects/HoverEffects/index.js +1 -0
- package/src/HDS/helpers/Effects/index.js +1 -0
- package/src/HDS/helpers/index.js +1 -0
- package/src/HDS/modules/Cards/dataSourceCard.js +7 -7
- package/src/index.css +36 -0
- package/src/styles/tailwind.css +168 -0
package/package.json
CHANGED
@@ -7,11 +7,6 @@ import { HDSButton } from "../../Buttons";
|
|
7
7
|
|
8
8
|
|
9
9
|
export default function Testimonial(props) {
|
10
|
-
const {
|
11
|
-
card,
|
12
|
-
cardHover
|
13
|
-
} = props;
|
14
|
-
|
15
10
|
|
16
11
|
const [isHovered, setIsHovered] = useState(false);
|
17
12
|
|
@@ -22,27 +17,30 @@ export default function Testimonial(props) {
|
|
22
17
|
const handleMouseLeave = () => {
|
23
18
|
setIsHovered(false);
|
24
19
|
};
|
25
|
-
|
20
|
+
|
21
|
+
|
22
|
+
const Card1 = (card) => {
|
23
|
+
card = card.card;
|
26
24
|
return (
|
27
25
|
<>
|
28
|
-
<div className={
|
26
|
+
<div className={` backdrop-blur-lg bg-neutral-1000 bg-opacity-20 rounded-2xl max-w-[220px] h-[428px] flex flex-col justify-between `}>
|
29
27
|
<div className="">
|
30
28
|
<div className=" pt-8 pl-6">
|
31
|
-
<img src=
|
29
|
+
<img src={card.title_img} alt="Card" className=" inline-block w-16 " />
|
32
30
|
</div>
|
33
|
-
|
34
|
-
|
35
|
-
<div className="mt-6 px-6 font-petrona text-base font-normal text-neutral-0 ">{card.subtitle}</div>
|
31
|
+
|
32
|
+
|
33
|
+
{card.subtitle && <div className="mt-6 px-6 font-petrona text-base font-normal text-neutral-0 ">{card.subtitle}</div>}
|
36
34
|
</div>
|
37
35
|
<div className="pl-6 pb-8">
|
38
|
-
<img
|
39
|
-
className={` w-14 h-14 shadow rounded-full ${
|
36
|
+
{card.avatar.img_url && <img
|
37
|
+
className={` w-14 h-14 shadow rounded-full ${(card.avatarBgColor ?? 'bg-neutral-0')} rounded inline-block`}
|
40
38
|
alt='avatar'
|
41
|
-
src={card.img_url}
|
42
|
-
/>
|
39
|
+
src={card.avatar.img_url}
|
40
|
+
/>}
|
43
41
|
<div className=" pt-3">
|
44
|
-
<Typography textStyle='body2c-bold' className={` text-neutral-0`}>{card.avatar.name}</Typography>
|
45
|
-
<Typography textStyle='body3c' className={` text-neutral-0 mt-1`}>{card.avatar.designation}</Typography>
|
42
|
+
{card.avatar && card.avatar.name && <Typography textStyle='body2c-bold' className={` text-neutral-0`}>{card.avatar.name}</Typography>}
|
43
|
+
{card.avatar && card.avatar.designation && <Typography textStyle='body3c' className={` text-neutral-0 mt-1`}>{card.avatar.designation}</Typography>}
|
46
44
|
</div>
|
47
45
|
</div>
|
48
46
|
|
@@ -51,13 +49,14 @@ export default function Testimonial(props) {
|
|
51
49
|
);
|
52
50
|
};
|
53
51
|
|
54
|
-
const Card2 = () => {
|
52
|
+
const Card2 = (cardHover) => {
|
53
|
+
cardHover = cardHover.cardHover;
|
55
54
|
return (
|
56
55
|
<div className="h-[428px]">
|
57
|
-
<div className={`${HDSColor(cardHover.cardBg)} rounded-2xl max-w-[221px] justify-between h-[
|
56
|
+
<div className={`${HDSColor(cardHover.cardBg)} rounded-2xl max-w-[221px] justify-between h-[428px] flex flex-col`}>
|
58
57
|
<div className=" ">
|
59
|
-
<div className="pt-8 pl-6
|
60
|
-
<img src=
|
58
|
+
<div className="pt-8 pl-6 ">
|
59
|
+
<img src={cardHover.img_url} alt="Card" className=" inline-block max-w-[148px]" />
|
61
60
|
</div>
|
62
61
|
<div className="mt-6 px-6 text-xl leading-[27px] font-semibold text-neutral-0">{cardHover.title}</div>
|
63
62
|
|
@@ -85,12 +84,12 @@ export default function Testimonial(props) {
|
|
85
84
|
onMouseEnter={handleMouseEnter}
|
86
85
|
onMouseLeave={handleMouseLeave}
|
87
86
|
>
|
88
|
-
|
87
|
+
|
89
88
|
<div className={`transition-all max-w-[220px] fixed ease-in-out duration-300 ${isHovered ? 'opacity-0 ' : 'opacity-100'}`}>
|
90
|
-
<Card1 />
|
89
|
+
<Card1 card={props.card} />
|
91
90
|
</div>
|
92
91
|
<div className={`transition-al fixed ease-in-out duration-300 ${isHovered ? 'opacity-100' : 'opacity-0'}`}>
|
93
|
-
<Card2 />
|
92
|
+
<Card2 cardHover={props.cardHover} />
|
94
93
|
</div>
|
95
94
|
</div>
|
96
95
|
);
|
@@ -112,7 +111,7 @@ Testimonial.defaultProps = {
|
|
112
111
|
},
|
113
112
|
cardHover: {
|
114
113
|
cardBg: 'bg-green-500',
|
115
|
-
img_url:'',
|
114
|
+
img_url: '',
|
116
115
|
img_alt: '',
|
117
116
|
title: 'Optum goes from concept to production in 100 days with Hasura',
|
118
117
|
button: {
|
@@ -1,11 +1,12 @@
|
|
1
1
|
import React from 'react';
|
2
2
|
import { Testimonial } from '../Testimonials';
|
3
|
+
import {FeedbackCard} from '../Feedback'
|
3
4
|
|
4
5
|
export default function HomeVC(props) {
|
5
6
|
return (
|
6
7
|
<>
|
7
|
-
<div className='carouselShadow'>
|
8
|
-
<div className='w-[620px] h-[476px] bg-base-1000 rounded-2xl border-2 border-neutral-300 flex justify-center items-center'>
|
8
|
+
<div className='carouselShadow overflow-hidden'>
|
9
|
+
<div className=' hidden w-[620px] h-[476px] bg-base-1000 rounded-2xl border-2 border-neutral-300 tb:flex justify-center items-center'>
|
9
10
|
<div className='w-[580px] h-[436px] bg-base-1000 rounded flex flex-col items-center justify-center overflow-hidden'>
|
10
11
|
<div className=''>
|
11
12
|
<div className=''>
|
@@ -17,17 +18,54 @@ export default function HomeVC(props) {
|
|
17
18
|
src={props.video_url}
|
18
19
|
/>
|
19
20
|
<div className='w-full fixed flex-col flex items-center'>
|
20
|
-
<div className='fixed mx-auto top-[451px] w-[147px] h-[3px] bg-neutral-0/20' />
|
21
|
+
<div className='fixed mx-auto top-[451px] left-[235px] w-[147px] h-[3px] bg-neutral-0/20' />
|
21
22
|
</div>
|
22
23
|
</div>
|
23
24
|
<div className='fixed top-[24px] left-[375px] bg-neutral-0/40'>
|
24
25
|
|
25
|
-
<Testimonial
|
26
|
+
<Testimonial
|
27
|
+
card={props.testimonial.card}
|
28
|
+
cardHover={props.testimonial.cardHover}
|
29
|
+
/>
|
26
30
|
</div>
|
27
31
|
</div>
|
28
32
|
</div>
|
29
33
|
</div>
|
34
|
+
<div className='overflow-hidden h-[614px] tb:hidden'>
|
35
|
+
<div className='w-screen h-[348px] bg-base-1000 rounded flex flex-col items-center justify-cente overflow-hidden'>
|
36
|
+
|
37
|
+
<div className=''>
|
38
|
+
<div className='o'>
|
39
|
+
<div className=''>
|
40
|
+
<video
|
41
|
+
autoPlay
|
42
|
+
loop
|
43
|
+
muted
|
44
|
+
className=" object-fill max-w-full max-h-full scale-[1.7]"
|
45
|
+
src={props.video_url}
|
46
|
+
/>
|
47
|
+
|
48
|
+
</div>
|
49
|
+
<div className='absolute z-50 top-[72px] px-4'>
|
50
|
+
|
51
|
+
< FeedbackCard
|
52
|
+
brandImgUrl={props.testimonial.card.title_img}
|
53
|
+
brandImgAlt={props.testimonial.card.avatar.name}
|
54
|
+
description={props.testimonial.card.subtitle}
|
55
|
+
speakerName={props.testimonial.card.avatar.name}
|
56
|
+
speakerDesignation={props.testimonial.card.avatar.designation}
|
57
|
+
speakerImgUrl={props.testimonial.card.avatar.img_url}
|
58
|
+
blurb={props.testimonial.cardHover.title}
|
59
|
+
dividerClass='border-b border-neutral-150'
|
60
|
+
caseStudyUrl={props.testimonial.cardHover.button.cta_text}
|
61
|
+
/>
|
62
|
+
</div>
|
63
|
+
</div>
|
64
|
+
</div>
|
30
65
|
|
66
|
+
|
67
|
+
</div>
|
68
|
+
</div>
|
31
69
|
</div>
|
32
70
|
</>)
|
33
71
|
}
|
@@ -0,0 +1,74 @@
|
|
1
|
+
import React, { useEffect, useRef } from 'react';
|
2
|
+
|
3
|
+
|
4
|
+
const CardHoverEffect = ({ children }) => {
|
5
|
+
const cardRef = useRef(null);
|
6
|
+
let bounds;
|
7
|
+
|
8
|
+
useEffect(() => {
|
9
|
+
const cardElement = cardRef.current;
|
10
|
+
|
11
|
+
const rotateToMouse = (e) => {
|
12
|
+
const mouseX = e.clientX;
|
13
|
+
const mouseY = e.clientY;
|
14
|
+
const leftX = mouseX - bounds.x;
|
15
|
+
const topY = mouseY - bounds.y;
|
16
|
+
const center = {
|
17
|
+
x: leftX - bounds.width / 2,
|
18
|
+
y: topY - bounds.height / 2
|
19
|
+
};
|
20
|
+
const distance = Math.sqrt(center.x ** 2 + center.y ** 2);
|
21
|
+
|
22
|
+
cardElement.style.transform = `
|
23
|
+
scale3d(1.07, 1.07, 1.07)
|
24
|
+
rotate3d(
|
25
|
+
${center.y / 100},
|
26
|
+
${-center.x / 100},
|
27
|
+
0,
|
28
|
+
${Math.log(distance) * 2}deg
|
29
|
+
)
|
30
|
+
`;
|
31
|
+
|
32
|
+
cardElement.querySelector('.glow').style.backgroundImage = `
|
33
|
+
radial-gradient(
|
34
|
+
circle at
|
35
|
+
${center.x * 2 + bounds.width / 2}px
|
36
|
+
${center.y * 2 + bounds.height / 2}px,
|
37
|
+
#ffffff55,
|
38
|
+
#0000000
|
39
|
+
|
40
|
+
)
|
41
|
+
`;
|
42
|
+
};
|
43
|
+
|
44
|
+
const handleMouseEnter = () => {
|
45
|
+
bounds = cardElement.getBoundingClientRect();
|
46
|
+
document.addEventListener('mousemove', rotateToMouse);
|
47
|
+
};
|
48
|
+
|
49
|
+
const handleMouseLeave = () => {
|
50
|
+
document.removeEventListener('mousemove', rotateToMouse);
|
51
|
+
cardElement.style.transform = '';
|
52
|
+
cardElement.style.background = '';
|
53
|
+
};
|
54
|
+
|
55
|
+
cardElement.addEventListener('mouseenter', handleMouseEnter);
|
56
|
+
cardElement.addEventListener('mouseleave', handleMouseLeave);
|
57
|
+
|
58
|
+
return () => {
|
59
|
+
cardElement.removeEventListener('mouseenter', handleMouseEnter);
|
60
|
+
cardElement.removeEventListener('mouseleave', handleMouseLeave);
|
61
|
+
};
|
62
|
+
}, []);
|
63
|
+
|
64
|
+
return (
|
65
|
+
<div className="card" ref={cardRef}>
|
66
|
+
<div className="glow" />
|
67
|
+
|
68
|
+
{children}
|
69
|
+
|
70
|
+
</div>
|
71
|
+
);
|
72
|
+
};
|
73
|
+
|
74
|
+
export default CardHoverEffect;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as Card3dHover} from './card3d'
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from './HoverEffects';
|
package/src/HDS/helpers/index.js
CHANGED
@@ -5,13 +5,13 @@ import { HDSButton} from '../../components/Buttons';
|
|
5
5
|
export default function DataSourcesCard(props) {
|
6
6
|
return (
|
7
7
|
<>
|
8
|
-
<div className="flex flex-col-reverse px-6 py-10
|
8
|
+
<div className="flex flex-col-reverse px-6 py-10 db:px-0 db:py-0 db:flex-row db:gap-[132px]">
|
9
9
|
|
10
|
-
<div className="flex flex-col
|
10
|
+
<div className="flex flex-col db:pl-20 db:pt-[104px] db:pb-[74px]">
|
11
11
|
{props.title && props.description
|
12
12
|
&& (<div className="flex flex-col gap-4">
|
13
|
-
<Typography textStyle='h3' className='text-neutral-1000
|
14
|
-
<Typography textStyle='sub2' className='text-neutral-600
|
13
|
+
<Typography textStyle='h3' className='text-neutral-1000 db:block hidden'>{props.title}</Typography>
|
14
|
+
<Typography textStyle='sub2' className='text-neutral-600 db:mt-0 mt-4 '>{props.description}</Typography>
|
15
15
|
</div>)}
|
16
16
|
{props.CTA &&
|
17
17
|
<div className="mt-4 tb:mt-6 flex">
|
@@ -25,16 +25,16 @@ export default function DataSourcesCard(props) {
|
|
25
25
|
</a>
|
26
26
|
</div>}
|
27
27
|
</div>
|
28
|
-
{props.video_url && <div className="flex mt-4 tb:mt-0 tb:items-end">
|
28
|
+
{props.video_url && <div className="flex mt-4 tb:mt-0 tb:items-end db:min-w-[550px]">
|
29
29
|
<video
|
30
30
|
autoPlay
|
31
31
|
loop
|
32
32
|
muted
|
33
33
|
src={props.video_url}
|
34
|
-
className=" rounded-xl
|
34
|
+
className=" rounded-xl db:rounded-none db:rounded-tl-3xl"
|
35
35
|
/>
|
36
36
|
</div>}
|
37
|
-
<div className="
|
37
|
+
<div className="db:hidden pb-2 pt-10">
|
38
38
|
<Typography textStyle='h3' className='text-neutral-1000'>{props.title}</Typography>
|
39
39
|
</div>
|
40
40
|
</div>
|
package/src/index.css
CHANGED
@@ -4,6 +4,42 @@
|
|
4
4
|
@tailwind utilities;
|
5
5
|
/* Typography classes */
|
6
6
|
|
7
|
+
.card {
|
8
|
+
max-width: 920px;
|
9
|
+
background-size: cover;
|
10
|
+
display: flex;
|
11
|
+
/* Add flex display */
|
12
|
+
flex-direction: column;
|
13
|
+
/* Stack elements vertically */
|
14
|
+
align-items: center;
|
15
|
+
/* Center align items horizontally */
|
16
|
+
justify-content: center;
|
17
|
+
|
18
|
+
position: relative;
|
19
|
+
|
20
|
+
transition-duration: 1000ms;
|
21
|
+
/* transition-duration: 300ms; */
|
22
|
+
transition-property: transform;
|
23
|
+
transition-timing-function: ease-out;
|
24
|
+
transform: rotate3d(0);
|
25
|
+
}
|
26
|
+
|
27
|
+
.card:hover {
|
28
|
+
transition-duration: 500ms;
|
29
|
+
/* transition-duration: 500ms; */
|
30
|
+
box-shadow: 0 5px 20px 5px #00000044;
|
31
|
+
border-radius: 24px;
|
32
|
+
}
|
33
|
+
|
34
|
+
.card .glow {
|
35
|
+
position: absolute;
|
36
|
+
width: 100%;
|
37
|
+
height: 100%;
|
38
|
+
left: 0;
|
39
|
+
top: 0;
|
40
|
+
}
|
41
|
+
|
42
|
+
/*test*/
|
7
43
|
|
8
44
|
|
9
45
|
.carouselShadow{
|
package/src/styles/tailwind.css
CHANGED
@@ -969,6 +969,14 @@ select{
|
|
969
969
|
top: 451px;
|
970
970
|
}
|
971
971
|
|
972
|
+
.left-\[235px\]{
|
973
|
+
left: 235px;
|
974
|
+
}
|
975
|
+
|
976
|
+
.top-\[72px\]{
|
977
|
+
top: 72px;
|
978
|
+
}
|
979
|
+
|
972
980
|
.isolate{
|
973
981
|
isolation: isolate;
|
974
982
|
}
|
@@ -1542,6 +1550,14 @@ select{
|
|
1542
1550
|
height: 100vh;
|
1543
1551
|
}
|
1544
1552
|
|
1553
|
+
.h-\[348px\]{
|
1554
|
+
height: 348px;
|
1555
|
+
}
|
1556
|
+
|
1557
|
+
.h-\[614px\]{
|
1558
|
+
height: 614px;
|
1559
|
+
}
|
1560
|
+
|
1545
1561
|
.max-h-\[181px\]{
|
1546
1562
|
max-height: 181px;
|
1547
1563
|
}
|
@@ -1778,6 +1794,10 @@ select{
|
|
1778
1794
|
min-width: 100%;
|
1779
1795
|
}
|
1780
1796
|
|
1797
|
+
.min-w-\[550px\]{
|
1798
|
+
min-width: 550px;
|
1799
|
+
}
|
1800
|
+
|
1781
1801
|
.max-w-2xl{
|
1782
1802
|
max-width: 42rem;
|
1783
1803
|
}
|
@@ -1876,6 +1896,10 @@ select{
|
|
1876
1896
|
max-width: min-content;
|
1877
1897
|
}
|
1878
1898
|
|
1899
|
+
.max-w-\[148px\]{
|
1900
|
+
max-width: 148px;
|
1901
|
+
}
|
1902
|
+
|
1879
1903
|
.flex-1{
|
1880
1904
|
flex: 1 1 0%;
|
1881
1905
|
}
|
@@ -2024,6 +2048,13 @@ select{
|
|
2024
2048
|
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));
|
2025
2049
|
}
|
2026
2050
|
|
2051
|
+
.scale-\[1\.7\]{
|
2052
|
+
--tw-scale-x: 1.7;
|
2053
|
+
--tw-scale-y: 1.7;
|
2054
|
+
-webkit-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));
|
2055
|
+
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));
|
2056
|
+
}
|
2057
|
+
|
2027
2058
|
.transform{
|
2028
2059
|
-webkit-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));
|
2029
2060
|
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));
|
@@ -6261,6 +6292,10 @@ select{
|
|
6261
6292
|
padding-top: 0.5rem;
|
6262
6293
|
}
|
6263
6294
|
|
6295
|
+
.pt-20{
|
6296
|
+
padding-top: 5rem;
|
6297
|
+
}
|
6298
|
+
|
6264
6299
|
.pt-3{
|
6265
6300
|
padding-top: 0.75rem;
|
6266
6301
|
}
|
@@ -7306,6 +7341,10 @@ select{
|
|
7306
7341
|
transition-duration: 1500ms;
|
7307
7342
|
}
|
7308
7343
|
|
7344
|
+
.duration-0{
|
7345
|
+
transition-duration: 0s;
|
7346
|
+
}
|
7347
|
+
|
7309
7348
|
.ease-in{
|
7310
7349
|
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
7311
7350
|
}
|
@@ -7320,6 +7359,44 @@ select{
|
|
7320
7359
|
|
7321
7360
|
/* Typography classes */
|
7322
7361
|
|
7362
|
+
.card {
|
7363
|
+
max-width: 920px;
|
7364
|
+
background-size: cover;
|
7365
|
+
display: flex;
|
7366
|
+
/* Add flex display */
|
7367
|
+
flex-direction: column;
|
7368
|
+
/* Stack elements vertically */
|
7369
|
+
align-items: center;
|
7370
|
+
/* Center align items horizontally */
|
7371
|
+
justify-content: center;
|
7372
|
+
position: relative;
|
7373
|
+
transition-duration: 1000ms;
|
7374
|
+
/* transition-duration: 300ms; */
|
7375
|
+
transition-property: -webkit-transform;
|
7376
|
+
transition-property: transform;
|
7377
|
+
transition-property: transform, -webkit-transform;
|
7378
|
+
transition-timing-function: ease-out;
|
7379
|
+
-webkit-transform: rotate3d(0);
|
7380
|
+
transform: rotate3d(0);
|
7381
|
+
}
|
7382
|
+
|
7383
|
+
.card:hover {
|
7384
|
+
transition-duration: 500ms;
|
7385
|
+
/* transition-duration: 500ms; */
|
7386
|
+
box-shadow: 0 5px 20px 5px #00000044;
|
7387
|
+
border-radius: 24px;
|
7388
|
+
}
|
7389
|
+
|
7390
|
+
.card .glow {
|
7391
|
+
position: absolute;
|
7392
|
+
width: 100%;
|
7393
|
+
height: 100%;
|
7394
|
+
left: 0;
|
7395
|
+
top: 0;
|
7396
|
+
}
|
7397
|
+
|
7398
|
+
/*test*/
|
7399
|
+
|
7323
7400
|
.carouselShadow{
|
7324
7401
|
-webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
|
7325
7402
|
filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
|
@@ -8545,6 +8622,13 @@ select{
|
|
8545
8622
|
z-index: 10;
|
8546
8623
|
}
|
8547
8624
|
|
8625
|
+
.hover\:scale-110:hover{
|
8626
|
+
--tw-scale-x: 1.1;
|
8627
|
+
--tw-scale-y: 1.1;
|
8628
|
+
-webkit-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));
|
8629
|
+
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));
|
8630
|
+
}
|
8631
|
+
|
8548
8632
|
.hover\:scale-125:hover{
|
8549
8633
|
--tw-scale-x: 1.25;
|
8550
8634
|
--tw-scale-y: 1.25;
|
@@ -8651,6 +8735,10 @@ select{
|
|
8651
8735
|
animation: spin 1s linear infinite;
|
8652
8736
|
}
|
8653
8737
|
|
8738
|
+
.hover\:rounded-3xl:hover{
|
8739
|
+
border-radius: 1.5rem;
|
8740
|
+
}
|
8741
|
+
|
8654
8742
|
.hover\:border:hover{
|
8655
8743
|
border-width: 1px;
|
8656
8744
|
}
|
@@ -9815,6 +9903,10 @@ select{
|
|
9815
9903
|
min-width: 310px;
|
9816
9904
|
}
|
9817
9905
|
|
9906
|
+
.tb\:min-w-\[550px\]{
|
9907
|
+
min-width: 550px;
|
9908
|
+
}
|
9909
|
+
|
9818
9910
|
.tb\:max-w-\[17rem\]{
|
9819
9911
|
max-width: 17rem;
|
9820
9912
|
}
|
@@ -10065,6 +10157,14 @@ select{
|
|
10065
10157
|
padding-top: 2.875rem;
|
10066
10158
|
}
|
10067
10159
|
|
10160
|
+
.tb\:pb-\[74px\]{
|
10161
|
+
padding-bottom: 74px;
|
10162
|
+
}
|
10163
|
+
|
10164
|
+
.tb\:pt-\[104px\]{
|
10165
|
+
padding-top: 104px;
|
10166
|
+
}
|
10167
|
+
|
10068
10168
|
.tb\:text-left{
|
10069
10169
|
text-align: left;
|
10070
10170
|
}
|
@@ -10527,6 +10627,10 @@ select{
|
|
10527
10627
|
min-width: 400px;
|
10528
10628
|
}
|
10529
10629
|
|
10630
|
+
.tb-l\:min-w-\[550px\]{
|
10631
|
+
min-width: 550px;
|
10632
|
+
}
|
10633
|
+
|
10530
10634
|
.tb-l\:max-w-\[658px\]{
|
10531
10635
|
max-width: 658px;
|
10532
10636
|
}
|
@@ -10637,6 +10741,16 @@ select{
|
|
10637
10741
|
padding-bottom: 3rem;
|
10638
10742
|
}
|
10639
10743
|
|
10744
|
+
.tb-l\:px-0{
|
10745
|
+
padding-left: 0px;
|
10746
|
+
padding-right: 0px;
|
10747
|
+
}
|
10748
|
+
|
10749
|
+
.tb-l\:py-0{
|
10750
|
+
padding-top: 0px;
|
10751
|
+
padding-bottom: 0px;
|
10752
|
+
}
|
10753
|
+
|
10640
10754
|
.tb-l\:pb-0{
|
10641
10755
|
padding-bottom: 0px;
|
10642
10756
|
}
|
@@ -10791,6 +10905,14 @@ select{
|
|
10791
10905
|
margin-left: 0px;
|
10792
10906
|
}
|
10793
10907
|
|
10908
|
+
.db\:mt-0{
|
10909
|
+
margin-top: 0px;
|
10910
|
+
}
|
10911
|
+
|
10912
|
+
.db\:block{
|
10913
|
+
display: block;
|
10914
|
+
}
|
10915
|
+
|
10794
10916
|
.db\:inline{
|
10795
10917
|
display: inline;
|
10796
10918
|
}
|
@@ -10799,6 +10921,10 @@ select{
|
|
10799
10921
|
display: flex;
|
10800
10922
|
}
|
10801
10923
|
|
10924
|
+
.db\:hidden{
|
10925
|
+
display: none;
|
10926
|
+
}
|
10927
|
+
|
10802
10928
|
.db\:w-1\/2{
|
10803
10929
|
width: 50%;
|
10804
10930
|
}
|
@@ -10833,6 +10959,10 @@ select{
|
|
10833
10959
|
min-width: 625px;
|
10834
10960
|
}
|
10835
10961
|
|
10962
|
+
.db\:min-w-\[550px\]{
|
10963
|
+
min-width: 550px;
|
10964
|
+
}
|
10965
|
+
|
10836
10966
|
.db\:max-w-\[488px\]{
|
10837
10967
|
max-width: 488px;
|
10838
10968
|
}
|
@@ -10857,6 +10987,10 @@ select{
|
|
10857
10987
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
10858
10988
|
}
|
10859
10989
|
|
10990
|
+
.db\:flex-row{
|
10991
|
+
flex-direction: row;
|
10992
|
+
}
|
10993
|
+
|
10860
10994
|
.db\:justify-start{
|
10861
10995
|
justify-content: flex-start;
|
10862
10996
|
}
|
@@ -10881,6 +11015,10 @@ select{
|
|
10881
11015
|
gap: 10rem;
|
10882
11016
|
}
|
10883
11017
|
|
11018
|
+
.db\:gap-\[132px\]{
|
11019
|
+
gap: 132px;
|
11020
|
+
}
|
11021
|
+
|
10884
11022
|
.db\:gap-x-10{
|
10885
11023
|
-webkit-column-gap: 2.5rem;
|
10886
11024
|
column-gap: 2.5rem;
|
@@ -10899,6 +11037,14 @@ select{
|
|
10899
11037
|
border-radius: 1.5rem;
|
10900
11038
|
}
|
10901
11039
|
|
11040
|
+
.db\:rounded-none{
|
11041
|
+
border-radius: 0px;
|
11042
|
+
}
|
11043
|
+
|
11044
|
+
.db\:rounded-tl-3xl{
|
11045
|
+
border-top-left-radius: 1.5rem;
|
11046
|
+
}
|
11047
|
+
|
10902
11048
|
.db\:p-20{
|
10903
11049
|
padding: 5rem;
|
10904
11050
|
}
|
@@ -10932,6 +11078,16 @@ select{
|
|
10932
11078
|
padding-bottom: 1.5rem;
|
10933
11079
|
}
|
10934
11080
|
|
11081
|
+
.db\:px-0{
|
11082
|
+
padding-left: 0px;
|
11083
|
+
padding-right: 0px;
|
11084
|
+
}
|
11085
|
+
|
11086
|
+
.db\:py-0{
|
11087
|
+
padding-top: 0px;
|
11088
|
+
padding-bottom: 0px;
|
11089
|
+
}
|
11090
|
+
|
10935
11091
|
.db\:pb-0{
|
10936
11092
|
padding-bottom: 0px;
|
10937
11093
|
}
|
@@ -10972,6 +11128,18 @@ select{
|
|
10972
11128
|
padding-top: 8rem;
|
10973
11129
|
}
|
10974
11130
|
|
11131
|
+
.db\:pb-\[74px\]{
|
11132
|
+
padding-bottom: 74px;
|
11133
|
+
}
|
11134
|
+
|
11135
|
+
.db\:pl-20{
|
11136
|
+
padding-left: 5rem;
|
11137
|
+
}
|
11138
|
+
|
11139
|
+
.db\:pt-\[104px\]{
|
11140
|
+
padding-top: 104px;
|
11141
|
+
}
|
11142
|
+
|
10975
11143
|
.db\:text-left{
|
10976
11144
|
text-align: left;
|
10977
11145
|
}
|