hds-web 1.9.8 → 1.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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';
@@ -1,2 +1,3 @@
1
1
  export * from './Translations';
2
2
  export * from './Media';
3
+ export * from './Effects';
@@ -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 tb:px-0 tb:py-0 tb:flex-row tb:gap-[132px]">
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 tb:pl-20 tb:py-[104px]">
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 tb:block hidden'>{props.title}</Typography>
14
- <Typography textStyle='sub2' className='text-neutral-600 tb:mt-0 mt-4 '>{props.description}</Typography>
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 tb:rounded-none tb:rounded-tl-3xl"
34
+ className=" rounded-xl db:rounded-none db:rounded-tl-3xl"
35
35
  />
36
36
  </div>}
37
- <div className="tb:hidden pt-10">
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>
@@ -8,42 +8,62 @@ export default function TextIconCard(props) {
8
8
  return (
9
9
  <div className="tb-m:flex gap-14 gap-y-14 gap-x-14 tb:gap-12 db-s:gap-20 db:gap-24">
10
10
  <div className="db-s:max-w-[524px] tb-m:w-1/2 w-full">
11
- <div className="pb-6 tb:pb-8 db:pb-12">
12
- <img className="max-w-[210px]" src={props.imgUrl} alt={props.title} />
13
- </div>
14
- <Typography textStyle="h3" as="h3" className="pb-2 text-neutral-1000">{props.title}</Typography>
15
- <Typography textStyle="sub2" className="pb-6 text-neutral-600">{props.description}</Typography>
16
- {props.button &&
17
- <a href={props.button.cta_link} className="flex ">
18
- <HDSButton
19
- label={props.button.cta_text}
20
- type={props.button.cta_type || 'secondary'}
21
- leftIconVariant='none'
22
- rightIconVariant='none'
23
- state='default'
24
- size='md'
25
- rightAnimatedArrow={true}
26
- rightAnimatedArrowColor={props.button.rightAnimatedArrowColor || '#3970FD'}
27
- />
28
- </a>
29
- }
30
-
31
- </div>
32
- <div className="flex-1 pt-14 tb-m:pt-0">
33
11
  {
34
- props.iconCards.map((card, index) => (
35
- <div className="pb-6 tb:pb-10 tb-l:pb-16 last:pb-0 flex" key={index}>
36
- <div className={`bg-blue-300 w-12 h-12 min-w-[48px] rounded-full flex justify-center items-center mr-5`}>
37
- <Icon height={'h-6 w-6 stroke-[1.5px]'} variant={((card.iconName) ? card.iconName : 'cube02')} strokeClass='stroke-neutral-1000' />
38
- </div>
39
- <div>
40
- <Typography textStyle="h4" as="h4" className="pb-2 text-neutral-1000">{card.title}</Typography>
41
- <Typography textStyle="body1" className="text-neutral-600">{card.description}</Typography>
42
- </div>
43
- </div>
44
- ))
12
+ props.tagline && (
13
+ <Typography textStyle="h6" as="h6" className="pb-2 uppercase text-blue-400">{props.tagline}</Typography>
14
+ )
15
+ }
16
+ {
17
+ props.title && (
18
+ <Typography textStyle="h3" as="h3" className="pb-2 text-neutral-1000">{props.title}</Typography>
19
+ )
20
+ }
21
+ {
22
+ props.description && (
23
+ <Typography textStyle="sub2" className="pb-6 text-neutral-600">{props.description}</Typography>
24
+ )
25
+ }
26
+ {props.button &&
27
+ <a href={props.button.cta_link} className="flex ">
28
+ <HDSButton
29
+ label={props.button.cta_text}
30
+ type={props.button.cta_type || 'secondary'}
31
+ leftIconVariant='none'
32
+ rightIconVariant='none'
33
+ state='default'
34
+ size='md'
35
+ rightAnimatedArrow={true}
36
+ rightAnimatedArrowColor={props.button.rightAnimatedArrowColor || '#3970FD'}
37
+ />
38
+ </a>
39
+ }
40
+ {
41
+ props.imgUrl && (
42
+ <div className="pt-6 tb:pt-8 db:pt-12">
43
+ <img className="max-w-[210px]" src={props.imgUrl} alt={((props.title) ? props.title : "Illu")} />
44
+ </div>
45
+ )
45
46
  }
46
47
  </div>
48
+ {
49
+ props.iconCards && (
50
+ <div className="flex-1 pt-14 tb-m:pt-0">
51
+ {
52
+ props.iconCards.map((card, index) => (
53
+ <div className="pb-6 tb:pb-10 tb-l:pb-16 last:pb-0 flex" key={index}>
54
+ <div className={"w-12 h-12 min-w-[48px] rounded-full flex justify-center items-center mr-5 " + ((card.iconBgClass) ? HDSColor(card.iconBgClass) : "bg-blue-300")}>
55
+ <Icon height={'h-6 w-6 stroke-[1.5px]'} variant={((card.iconName) ? card.iconName : 'cube02')} strokeClass='stroke-neutral-1000' />
56
+ </div>
57
+ <div>
58
+ <Typography textStyle="h4" as="h4" className="pb-2 text-neutral-1000">{card.title}</Typography>
59
+ <Typography textStyle="body1" className="text-neutral-600">{card.description}</Typography>
60
+ </div>
61
+ </div>
62
+ ))
63
+ }
64
+ </div>
65
+ )
66
+ }
47
67
  </div>
48
68
  )
49
69
  }
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{
@@ -913,6 +913,10 @@ select{
913
913
  left: 17.6%;
914
914
  }
915
915
 
916
+ .left-\[235px\]{
917
+ left: 235px;
918
+ }
919
+
916
920
  .left-\[375px\]{
917
921
  left: 375px;
918
922
  }
@@ -969,6 +973,14 @@ select{
969
973
  top: 451px;
970
974
  }
971
975
 
976
+ .top-\[72px\]{
977
+ top: 72px;
978
+ }
979
+
980
+ .top-\[90px\]{
981
+ top: 90px;
982
+ }
983
+
972
984
  .isolate{
973
985
  isolation: isolate;
974
986
  }
@@ -1490,6 +1502,10 @@ select{
1490
1502
  height: 33px;
1491
1503
  }
1492
1504
 
1505
+ .h-\[348px\]{
1506
+ height: 348px;
1507
+ }
1508
+
1493
1509
  .h-\[3px\]{
1494
1510
  height: 3px;
1495
1511
  }
@@ -1502,10 +1518,6 @@ select{
1502
1518
  height: 436px;
1503
1519
  }
1504
1520
 
1505
- .h-\[442px\]{
1506
- height: 442px;
1507
- }
1508
-
1509
1521
  .h-\[476px\]{
1510
1522
  height: 476px;
1511
1523
  }
@@ -1518,6 +1530,10 @@ select{
1518
1530
  height: 60px;
1519
1531
  }
1520
1532
 
1533
+ .h-\[614px\]{
1534
+ height: 614px;
1535
+ }
1536
+
1521
1537
  .h-\[800px\]{
1522
1538
  height: 800px;
1523
1539
  }
@@ -1542,6 +1558,10 @@ select{
1542
1558
  height: 100vh;
1543
1559
  }
1544
1560
 
1561
+ .h-\[675px\]{
1562
+ height: 675px;
1563
+ }
1564
+
1545
1565
  .max-h-\[181px\]{
1546
1566
  max-height: 181px;
1547
1567
  }
@@ -1778,6 +1798,10 @@ select{
1778
1798
  min-width: 100%;
1779
1799
  }
1780
1800
 
1801
+ .min-w-\[312px\]{
1802
+ min-width: 312px;
1803
+ }
1804
+
1781
1805
  .max-w-2xl{
1782
1806
  max-width: 42rem;
1783
1807
  }
@@ -1794,6 +1818,10 @@ select{
1794
1818
  max-width: 125px;
1795
1819
  }
1796
1820
 
1821
+ .max-w-\[148px\]{
1822
+ max-width: 148px;
1823
+ }
1824
+
1797
1825
  .max-w-\[15rem\]{
1798
1826
  max-width: 15rem;
1799
1827
  }
@@ -2024,6 +2052,13 @@ select{
2024
2052
  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
2053
  }
2026
2054
 
2055
+ .scale-\[1\.7\]{
2056
+ --tw-scale-x: 1.7;
2057
+ --tw-scale-y: 1.7;
2058
+ -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));
2059
+ 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));
2060
+ }
2061
+
2027
2062
  .transform{
2028
2063
  -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
2064
  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));
@@ -6197,10 +6232,6 @@ select{
6197
6232
  padding-right: 2.5rem;
6198
6233
  }
6199
6234
 
6200
- .pr-12{
6201
- padding-right: 3rem;
6202
- }
6203
-
6204
6235
  .pr-2{
6205
6236
  padding-right: 0.5rem;
6206
6237
  }
@@ -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
  }
@@ -7282,6 +7317,10 @@ select{
7282
7317
  transition-delay: 300ms;
7283
7318
  }
7284
7319
 
7320
+ .duration-0{
7321
+ transition-duration: 0s;
7322
+ }
7323
+
7285
7324
  .duration-100{
7286
7325
  transition-duration: 100ms;
7287
7326
  }
@@ -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
  }
@@ -9777,6 +9865,10 @@ select{
9777
9865
  height: 100%;
9778
9866
  }
9779
9867
 
9868
+ .tb\:h-\[513px\]{
9869
+ height: 513px;
9870
+ }
9871
+
9780
9872
  .tb\:max-h-\[181px\]{
9781
9873
  max-height: 181px;
9782
9874
  }
@@ -9803,6 +9895,10 @@ select{
9803
9895
  width: 100%;
9804
9896
  }
9805
9897
 
9898
+ .tb\:w-\[643px\]{
9899
+ width: 643px;
9900
+ }
9901
+
9806
9902
  .tb\:min-w-\[18rem\]{
9807
9903
  min-width: 18rem;
9808
9904
  }
@@ -9847,6 +9943,10 @@ select{
9847
9943
  max-width: 530px;
9848
9944
  }
9849
9945
 
9946
+ .tb\:max-w-\[700px\]{
9947
+ max-width: 700px;
9948
+ }
9949
+
9850
9950
  .tb\:snap-always{
9851
9951
  scroll-snap-stop: always;
9852
9952
  }
@@ -9911,10 +10011,6 @@ select{
9911
10011
  gap: 0.75rem;
9912
10012
  }
9913
10013
 
9914
- .tb\:gap-\[132px\]{
9915
- gap: 132px;
9916
- }
9917
-
9918
10014
  .tb\:gap-\[31\.5rem\]{
9919
10015
  gap: 31.5rem;
9920
10016
  }
@@ -9932,14 +10028,6 @@ select{
9932
10028
  border-radius: 1.5rem;
9933
10029
  }
9934
10030
 
9935
- .tb\:rounded-none{
9936
- border-radius: 0px;
9937
- }
9938
-
9939
- .tb\:rounded-tl-3xl{
9940
- border-top-left-radius: 1.5rem;
9941
- }
9942
-
9943
10031
  .tb\:border{
9944
10032
  border-width: 1px;
9945
10033
  }
@@ -10002,21 +10090,11 @@ select{
10002
10090
  padding-right: 2rem;
10003
10091
  }
10004
10092
 
10005
- .tb\:py-0{
10006
- padding-top: 0px;
10007
- padding-bottom: 0px;
10008
- }
10009
-
10010
10093
  .tb\:py-14{
10011
10094
  padding-top: 3.5rem;
10012
10095
  padding-bottom: 3.5rem;
10013
10096
  }
10014
10097
 
10015
- .tb\:py-\[104px\]{
10016
- padding-top: 104px;
10017
- padding-bottom: 104px;
10018
- }
10019
-
10020
10098
  .tb\:pb-0{
10021
10099
  padding-bottom: 0px;
10022
10100
  }
@@ -10029,10 +10107,6 @@ select{
10029
10107
  padding-bottom: 2rem;
10030
10108
  }
10031
10109
 
10032
- .tb\:pl-20{
10033
- padding-left: 5rem;
10034
- }
10035
-
10036
10110
  .tb\:pr-0{
10037
10111
  padding-right: 0px;
10038
10112
  }
@@ -10775,6 +10849,10 @@ select{
10775
10849
  }
10776
10850
 
10777
10851
  @media (min-width: 1240px){
10852
+ .db\:absolute{
10853
+ position: absolute;
10854
+ }
10855
+
10778
10856
  .db\:-left-5{
10779
10857
  left: -1.25rem;
10780
10858
  }
@@ -10791,6 +10869,14 @@ select{
10791
10869
  margin-left: 0px;
10792
10870
  }
10793
10871
 
10872
+ .db\:mt-0{
10873
+ margin-top: 0px;
10874
+ }
10875
+
10876
+ .db\:block{
10877
+ display: block;
10878
+ }
10879
+
10794
10880
  .db\:inline{
10795
10881
  display: inline;
10796
10882
  }
@@ -10799,6 +10885,14 @@ select{
10799
10885
  display: flex;
10800
10886
  }
10801
10887
 
10888
+ .db\:hidden{
10889
+ display: none;
10890
+ }
10891
+
10892
+ .db\:h-\[800px\]{
10893
+ height: 800px;
10894
+ }
10895
+
10802
10896
  .db\:w-1\/2{
10803
10897
  width: 50%;
10804
10898
  }
@@ -10829,6 +10923,10 @@ select{
10829
10923
  width: 100%;
10830
10924
  }
10831
10925
 
10926
+ .db\:min-w-\[550px\]{
10927
+ min-width: 550px;
10928
+ }
10929
+
10832
10930
  .db\:min-w-\[625px\]{
10833
10931
  min-width: 625px;
10834
10932
  }
@@ -10857,6 +10955,10 @@ select{
10857
10955
  grid-template-columns: repeat(4, minmax(0, 1fr));
10858
10956
  }
10859
10957
 
10958
+ .db\:flex-row{
10959
+ flex-direction: row;
10960
+ }
10961
+
10860
10962
  .db\:justify-start{
10861
10963
  justify-content: flex-start;
10862
10964
  }
@@ -10881,6 +10983,10 @@ select{
10881
10983
  gap: 10rem;
10882
10984
  }
10883
10985
 
10986
+ .db\:gap-\[132px\]{
10987
+ gap: 132px;
10988
+ }
10989
+
10884
10990
  .db\:gap-x-10{
10885
10991
  -webkit-column-gap: 2.5rem;
10886
10992
  column-gap: 2.5rem;
@@ -10899,6 +11005,14 @@ select{
10899
11005
  border-radius: 1.5rem;
10900
11006
  }
10901
11007
 
11008
+ .db\:rounded-none{
11009
+ border-radius: 0px;
11010
+ }
11011
+
11012
+ .db\:rounded-tl-3xl{
11013
+ border-top-left-radius: 1.5rem;
11014
+ }
11015
+
10902
11016
  .db\:p-20{
10903
11017
  padding: 5rem;
10904
11018
  }
@@ -10907,6 +11021,11 @@ select{
10907
11021
  padding: 2rem;
10908
11022
  }
10909
11023
 
11024
+ .db\:px-0{
11025
+ padding-left: 0px;
11026
+ padding-right: 0px;
11027
+ }
11028
+
10910
11029
  .db\:px-20{
10911
11030
  padding-left: 5rem;
10912
11031
  padding-right: 5rem;
@@ -10922,6 +11041,11 @@ select{
10922
11041
  padding-right: 1rem;
10923
11042
  }
10924
11043
 
11044
+ .db\:py-0{
11045
+ padding-top: 0px;
11046
+ padding-bottom: 0px;
11047
+ }
11048
+
10925
11049
  .db\:py-20{
10926
11050
  padding-top: 5rem;
10927
11051
  padding-bottom: 5rem;
@@ -10948,6 +11072,14 @@ select{
10948
11072
  padding-bottom: 7rem;
10949
11073
  }
10950
11074
 
11075
+ .db\:pb-\[74px\]{
11076
+ padding-bottom: 74px;
11077
+ }
11078
+
11079
+ .db\:pl-20{
11080
+ padding-left: 5rem;
11081
+ }
11082
+
10951
11083
  .db\:pl-28{
10952
11084
  padding-left: 7rem;
10953
11085
  }
@@ -10972,6 +11104,10 @@ select{
10972
11104
  padding-top: 8rem;
10973
11105
  }
10974
11106
 
11107
+ .db\:pt-\[104px\]{
11108
+ padding-top: 104px;
11109
+ }
11110
+
10975
11111
  .db\:text-left{
10976
11112
  text-align: left;
10977
11113
  }