hds-web 1.3.3 → 1.3.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hds-web",
3
- "version": "1.3.3",
3
+ "version": "1.3.4",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.es.js",
@@ -1,3 +1,3 @@
1
1
  <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M21 8H3M16 2V5M8 2V5M12 18V12M9 15H15M7.8 22H16.2C17.8802 22 18.7202 22 19.362 21.673C19.9265 21.3854 20.3854 20.9265 20.673 20.362C21 19.7202 21 18.8802 21 17.2V8.8C21 7.11984 21 6.27976 20.673 5.63803C20.3854 5.07354 19.9265 4.6146 19.362 4.32698C18.7202 4 17.8802 4 16.2 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V17.2C3 18.8802 3 19.7202 3.32698 20.362C3.6146 20.9265 4.07354 21.3854 4.63803 21.673C5.27976 22 6.11984 22 7.8 22Z" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
2
+ <path d="M21 8H3M16 2V5M8 2V5M12 18V12M9 15H15M7.8 22H16.2C17.8802 22 18.7202 22 19.362 21.673C19.9265 21.3854 20.3854 20.9265 20.673 20.362C21 19.7202 21 18.8802 21 17.2V8.8C21 7.11984 21 6.27976 20.673 5.63803C20.3854 5.07354 19.9265 4.6146 19.362 4.32698C18.7202 4 17.8802 4 16.2 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V17.2C3 18.8802 3 19.7202 3.32698 20.362C3.6146 20.9265 4.07354 21.3854 4.63803 21.673C5.27976 22 6.11984 22 7.8 22Z" stroke-linecap="round" stroke-linejoin="round"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
1
  <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M21 11.5V8.8C21 7.11984 21 6.27976 20.673 5.63803C20.3854 5.07354 19.9265 4.6146 19.362 4.32698C18.7202 4 17.8802 4 16.2 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V17.2C3 18.8802 3 19.7202 3.32698 20.362C3.6146 20.9265 4.07354 21.3854 4.63803 21.673C5.27976 22 6.11984 22 7.8 22H12.5M21 10H3M16 2V6M8 2V6M18 21V15M15 18H21" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
2
+ <path d="M21 11.5V8.8C21 7.11984 21 6.27976 20.673 5.63803C20.3854 5.07354 19.9265 4.6146 19.362 4.32698C18.7202 4 17.8802 4 16.2 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V17.2C3 18.8802 3 19.7202 3.32698 20.362C3.6146 20.9265 4.07354 21.3854 4.63803 21.673C5.27976 22 6.11984 22 7.8 22H12.5M21 10H3M16 2V6M8 2V6M18 21V15M15 18H21" stroke-linecap="round" stroke-linejoin="round"/>
3
3
  </svg>
@@ -8,8 +8,8 @@ export default function HasConAvatar({ name, designation, size, imageUrl }) {
8
8
  <div className={`${size} tb:max-w-[289px] group rounded-3xl flex items-center justify-between bg-neutral-0 tb:inline-flex tb:flex-col shadow hover:shadow-xl tb:min-w-[18rem]`}>
9
9
 
10
10
  <div className="px-5 py-[30px] tb:p-0 text-left tb:flex-col min-h-[96px] tb:flex tb:items-center tb:px-8 tb:pb-8 tb:mt-8 tb:ml-0 tb-l:text-center">
11
- <Typography textStyle='body1c-bold' className='text-blue-400'>{name}</Typography>
12
- <Typography textStyle='body3c-medium' className='text-blue-800'>{designation}</Typography>
11
+ <Typography textStyle='h5' className='text-blue-400'>{name}</Typography>
12
+ <Typography textStyle='h7' className='text-blue-800 uppercase'>{designation}</Typography>
13
13
  </div>
14
14
  <div className='relative self-center'>
15
15
  <img
@@ -1,10 +1,11 @@
1
1
  import React from 'react';
2
2
  import PropTypes from 'prop-types';
3
3
  import { Icon } from '../common-components/Icon';
4
+ import { Typography } from '../../foundation/Typography';
4
5
  const imgSizes = {
5
6
  'xs': 'h-8 w-8',
6
7
  'sm': 'h-10 w-10',
7
- 'md': 'h-12 w-12',
8
+ 'md': 'h-12 w-12 min-w-[48px]',
8
9
  'lg': 'h-[60px] w-[60px]',
9
10
  }
10
11
  const AvatarVariant = {
@@ -12,21 +13,6 @@ const AvatarVariant = {
12
13
  'square': 'rounded-lg',
13
14
  }
14
15
 
15
-
16
- const nameTextStyle = {
17
- 'xs': 'text-d-body1c-bold',
18
- 'sm': 'text-d-body1c-bold',
19
- 'md': 'text-d-body1c-bold',
20
- 'lg': 'text-d-body1c-bold'
21
- }
22
-
23
- const desgnTextStyle = {
24
- 'xs': 'text-hds-d-body3c ',
25
- 'sm': 'text-hds-d-body3c ',
26
- 'md': 'text-hds-d-body3c ',
27
- 'lg': 'text-hds-d-body3c '
28
- }
29
-
30
16
  export default function ProfileAvatar({ name, designation, size, imageUrl, avatarVariant }) {
31
17
  const imgSizeClass = imgSizes[size] || imgSizes.md;
32
18
  const avatarVariantClass = AvatarVariant[avatarVariant] || AvatarVariant.circular;
@@ -50,15 +36,8 @@ export default function ProfileAvatar({ name, designation, size, imageUrl, avata
50
36
  )}
51
37
  </div>
52
38
  <div className="ml-3">
53
- <p
54
- className={`${nameTextStyle[`${size}`]}text-neutral-900 group-hover:text-gray-900`}
55
- >
56
- {name}
57
- </p>
58
- <p
59
- className={`${desgnTextStyle[`${size}`]} text-neutral-500 group-hover:text-gray-700`}>
60
- {designation}
61
- </p>
39
+ <Typography textStyle='body2-semi-bold' className={` text-blue-800`}>{name}</Typography>
40
+ <Typography textStyle='body3' className={` text-neutral-500`}>{designation}</Typography>
62
41
  </div>
63
42
  </div>
64
43
  </div>
@@ -164,7 +164,7 @@ export default function Button(props) {
164
164
 
165
165
  {leftIconVariant && leftIconVariant !== 'none' && type=='iconOnly' && (
166
166
  <div className={`${ANIMATED_ARR_CLASSES['icon1'][`${size}`]} `}>
167
- <Icon variant={leftIconVariant} height='group-active:stroke-neutral-0 group-hover:transition-all group-hover:ease-in-out group-hover:duration-100 group-hover:stroke-neutral-0 group-focus:stroke-neutral-0' strokeColor={leftIconColor} />
167
+ <Icon variant={leftIconVariant} height='group-active:stroke-neutral-0 stroke-[1.5px] group-hover:transition-all group-hover:ease-in-out group-hover:duration-100 group-hover:stroke-neutral-0 group-focus:stroke-neutral-0' strokeColor={leftIconColor} />
168
168
  </div>
169
169
  )}
170
170
  {label}
@@ -18,10 +18,10 @@ export default function TalkCard2(props) {
18
18
  <div className="grid">
19
19
  <div className={`flex flex-col tb-l:flex-row tb-l:justify-between `}>
20
20
  <div className={"px-8 py-6 tb-l:border-r tb-l:border-r-neutral-200"}>
21
- <div className="flex gap-2">
21
+ <div className="flex flex-col tb:flex-row tb:gap-3 gap-2">
22
22
  {props.badges &&
23
23
  props.badges.map((value, index) => (
24
- <div key={index} className='flex whitespace-nowrap'>
24
+ <div key={index} className='flex whitespace-nowrap'>
25
25
  <Badges
26
26
  size={value.size}
27
27
  color={value.color}
@@ -36,8 +36,10 @@ export default function TalkCard2(props) {
36
36
  }
37
37
 
38
38
  </div>
39
- <div className="tb-l:w-[520px]">
39
+ <div className="tb-l:w-[520px] h-full flex flex-col tb:justify-between">
40
+ <div>
40
41
 
42
+
41
43
  <Typography className='my-2 text-blue-800' textStyle='h5'>{props.title}</Typography>
42
44
 
43
45
  {props.para &&
@@ -47,6 +49,8 @@ export default function TalkCard2(props) {
47
49
  {props.para}
48
50
  </Typography>
49
51
  }
52
+ </div>
53
+ <div className="pb-6 flex">
50
54
  {props.readUrl && (
51
55
  <a href={props.readUrl}>
52
56
  <HDSButton
@@ -64,6 +68,7 @@ export default function TalkCard2(props) {
64
68
  />
65
69
  </a>
66
70
  )}
71
+ </div>
67
72
 
68
73
 
69
74
  </div>
@@ -73,7 +78,7 @@ export default function TalkCard2(props) {
73
78
  <div className={`${CardClass} divide-y divide-neutral-150 flex tb-l:w-full flex-col pt-0`} >
74
79
  {
75
80
  props.speakerSet && (
76
- <div className="pl-8 flex gap-6 tb-l:pt-12 tb:mt-0 tb-l:pb-12 pb-6 flex-col ">
81
+ <div className="px-8 flex gap-6 tb-l:pt-12 tb:mt-0 tb-l:pb-12 pb-6 flex-col ">
77
82
  {props.speakerSet.map((value, i) => (
78
83
  <div key={i} className="block">
79
84
 
@@ -90,7 +95,7 @@ export default function TalkCard2(props) {
90
95
  )
91
96
  }
92
97
  {props.eventTime && <div className=" w-full pl-8 p-6 flex flex-row justify-between items-center">
93
- <Typography textStyle='h6' className='text-blue-800'>{props.eventTime}</Typography>
98
+ <Typography textStyle='h6' className='text-blue-800 uppercase'>{props.eventTime}</Typography>
94
99
  <a href={props.addCalendarUrl}>
95
100
  <HDSButton
96
101
  leftIconVariant='calendarplus02'
@@ -1185,6 +1185,10 @@ select {
1185
1185
  margin-left: 1rem;
1186
1186
  }
1187
1187
 
1188
+ .ml-6 {
1189
+ margin-left: 1.5rem;
1190
+ }
1191
+
1188
1192
  .ml-8 {
1189
1193
  margin-left: 2rem;
1190
1194
  }
@@ -1229,10 +1233,6 @@ select {
1229
1233
  margin-top: 0.5rem;
1230
1234
  }
1231
1235
 
1232
- .mt-20 {
1233
- margin-top: 5rem;
1234
- }
1235
-
1236
1236
  .mt-3 {
1237
1237
  margin-top: 0.75rem;
1238
1238
  }
@@ -1261,10 +1261,6 @@ select {
1261
1261
  margin-top: 2.25rem;
1262
1262
  }
1263
1263
 
1264
- .ml-6 {
1265
- margin-left: 1.5rem;
1266
- }
1267
-
1268
1264
  .line-clamp-3 {
1269
1265
  overflow: hidden;
1270
1266
  display: -webkit-box;
@@ -1312,10 +1308,6 @@ select {
1312
1308
  aspect-ratio: 2/1;
1313
1309
  }
1314
1310
 
1315
- .h-1 {
1316
- height: 0.25rem;
1317
- }
1318
-
1319
1311
  .h-1\/2 {
1320
1312
  height: 50%;
1321
1313
  }
@@ -1542,24 +1534,8 @@ select {
1542
1534
  width: 100vw;
1543
1535
  }
1544
1536
 
1545
- .w-\[520px\] {
1546
- width: 520px;
1547
- }
1548
-
1549
- .w-\[62\%\] {
1550
- width: 62%;
1551
- }
1552
-
1553
- .w-\[18\%\] {
1554
- width: 18%;
1555
- }
1556
-
1557
- .w-\[82\%\] {
1558
- width: 82%;
1559
- }
1560
-
1561
- .w-\[434px\] {
1562
- width: 434px;
1537
+ .min-w-\[100px\] {
1538
+ min-width: 100px;
1563
1539
  }
1564
1540
 
1565
1541
  .min-w-\[11\.5rem\] {
@@ -1574,6 +1550,10 @@ select {
1574
1550
  min-width: 348px;
1575
1551
  }
1576
1552
 
1553
+ .min-w-\[48px\] {
1554
+ min-width: 48px;
1555
+ }
1556
+
1577
1557
  .min-w-fit {
1578
1558
  min-width: -webkit-fit-content;
1579
1559
  min-width: -moz-fit-content;
@@ -1584,10 +1564,6 @@ select {
1584
1564
  min-width: 100%;
1585
1565
  }
1586
1566
 
1587
- .min-w-\[100px\] {
1588
- min-width: 100px;
1589
- }
1590
-
1591
1567
  .max-w-2xl {
1592
1568
  max-width: 42rem;
1593
1569
  }
@@ -1646,14 +1622,6 @@ select {
1646
1622
  max-width: min-content;
1647
1623
  }
1648
1624
 
1649
- .max-w-\[430px\] {
1650
- max-width: 430px;
1651
- }
1652
-
1653
- .max-w-\[520px\] {
1654
- max-width: 520px;
1655
- }
1656
-
1657
1625
  .flex-1 {
1658
1626
  flex: 1 1 0%;
1659
1627
  }
@@ -1779,14 +1747,14 @@ select {
1779
1747
  animation: bounce 1s infinite;
1780
1748
  }
1781
1749
 
1782
- .cursor-pointer {
1783
- cursor: pointer;
1784
- }
1785
-
1786
1750
  .cursor-default {
1787
1751
  cursor: default;
1788
1752
  }
1789
1753
 
1754
+ .cursor-pointer {
1755
+ cursor: pointer;
1756
+ }
1757
+
1790
1758
  .select-none {
1791
1759
  -webkit-user-select: none;
1792
1760
  user-select: none;
@@ -1848,10 +1816,6 @@ select {
1848
1816
  place-content: space-evenly;
1849
1817
  }
1850
1818
 
1851
- .content-center {
1852
- align-content: center;
1853
- }
1854
-
1855
1819
  .items-start {
1856
1820
  align-items: flex-start;
1857
1821
  }
@@ -1936,10 +1900,6 @@ select {
1936
1900
  gap: 25rem;
1937
1901
  }
1938
1902
 
1939
- .gap-8 {
1940
- gap: 2rem;
1941
- }
1942
-
1943
1903
  .gap-x-1 {
1944
1904
  -webkit-column-gap: 0.25rem;
1945
1905
  column-gap: 0.25rem;
@@ -2051,12 +2011,6 @@ select {
2051
2011
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
2052
2012
  }
2053
2013
 
2054
- .divide-y-2 > :not([hidden]) ~ :not([hidden]) {
2055
- --tw-divide-y-reverse: 0;
2056
- border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse)));
2057
- border-bottom-width: calc(2px * var(--tw-divide-y-reverse));
2058
- }
2059
-
2060
2014
  .divide-blue-600\/10 > :not([hidden]) ~ :not([hidden]) {
2061
2015
  border-color: rgb(30 86 227 / 0.1);
2062
2016
  }
@@ -2187,11 +2141,6 @@ select {
2187
2141
  border-bottom-left-radius: 0.375rem;
2188
2142
  }
2189
2143
 
2190
- .rounded-r-2xl {
2191
- border-top-right-radius: 1rem;
2192
- border-bottom-right-radius: 1rem;
2193
- }
2194
-
2195
2144
  .rounded-r-md {
2196
2145
  border-top-right-radius: 0.375rem;
2197
2146
  border-bottom-right-radius: 0.375rem;
@@ -2264,10 +2213,6 @@ select {
2264
2213
  border-top-width: 1px;
2265
2214
  }
2266
2215
 
2267
- .border-r-2 {
2268
- border-right-width: 2px;
2269
- }
2270
-
2271
2216
  .border-solid {
2272
2217
  border-style: solid;
2273
2218
  }
@@ -5178,6 +5123,10 @@ select {
5178
5123
  stroke-width: 1.5px;
5179
5124
  }
5180
5125
 
5126
+ .stroke-\[1\.5\] {
5127
+ stroke-width: 1.5;
5128
+ }
5129
+
5181
5130
  .object-contain {
5182
5131
  object-fit: contain;
5183
5132
  }
@@ -5387,6 +5336,10 @@ select {
5387
5336
  padding-bottom: 2.5rem;
5388
5337
  }
5389
5338
 
5339
+ .pb-12 {
5340
+ padding-bottom: 3rem;
5341
+ }
5342
+
5390
5343
  .pb-16 {
5391
5344
  padding-bottom: 4rem;
5392
5345
  }
@@ -5447,6 +5400,10 @@ select {
5447
5400
  padding-left: 1.75rem;
5448
5401
  }
5449
5402
 
5403
+ .pl-8 {
5404
+ padding-left: 2rem;
5405
+ }
5406
+
5450
5407
  .pr-10 {
5451
5408
  padding-right: 2.5rem;
5452
5409
  }
@@ -5511,22 +5468,6 @@ select {
5511
5468
  padding-top: 1.5rem;
5512
5469
  }
5513
5470
 
5514
- .pt-12 {
5515
- padding-top: 3rem;
5516
- }
5517
-
5518
- .pb-9 {
5519
- padding-bottom: 2.25rem;
5520
- }
5521
-
5522
- .pl-8 {
5523
- padding-left: 2rem;
5524
- }
5525
-
5526
- .pb-12 {
5527
- padding-bottom: 3rem;
5528
- }
5529
-
5530
5471
  .text-left {
5531
5472
  text-align: left;
5532
5473
  }
@@ -5560,13 +5501,6 @@ select {
5560
5501
  font-weight: 500;
5561
5502
  }
5562
5503
 
5563
- .text-hds-d-body3c {
5564
- font-size: 0.875rem;
5565
- line-height: 1.25rem;
5566
- letter-spacing: ;
5567
- font-weight: 400;
5568
- }
5569
-
5570
5504
  .text-hds-d-body3c-medium {
5571
5505
  font-size: 0.875rem;
5572
5506
  line-height: 1.25rem;
@@ -5638,21 +5572,21 @@ select {
5638
5572
  }
5639
5573
 
5640
5574
  .text-hds-m-body2-bold {
5641
- font-size: 875rem;
5575
+ font-size: 0.875rem;
5642
5576
  line-height: 1.5rem;
5643
5577
  letter-spacing: ;
5644
5578
  font-weight: 700;
5645
5579
  }
5646
5580
 
5647
5581
  .text-hds-m-body2-medium {
5648
- font-size: 875rem;
5582
+ font-size: 0.875rem;
5649
5583
  line-height: 1.5rem;
5650
5584
  letter-spacing: ;
5651
5585
  font-weight: 500;
5652
5586
  }
5653
5587
 
5654
5588
  .text-hds-m-body2-semi-bold {
5655
- font-size: 875rem;
5589
+ font-size: 0.875rem;
5656
5590
  line-height: 1.5rem;
5657
5591
  letter-spacing: ;
5658
5592
  font-weight: 600;
@@ -7670,14 +7604,14 @@ select {
7670
7604
  background-color: rgb(13 65 198 / var(--tw-bg-opacity));
7671
7605
  }
7672
7606
 
7673
- .hover\:bg-neutral-100:hover {
7607
+ .hover\:bg-neutral-0:hover {
7674
7608
  --tw-bg-opacity: 1;
7675
- background-color: rgb(243 244 246 / var(--tw-bg-opacity));
7609
+ background-color: rgb(255 255 255 / var(--tw-bg-opacity));
7676
7610
  }
7677
7611
 
7678
- .hover\:bg-neutral-0:hover {
7612
+ .hover\:bg-neutral-100:hover {
7679
7613
  --tw-bg-opacity: 1;
7680
- background-color: rgb(255 255 255 / var(--tw-bg-opacity));
7614
+ background-color: rgb(243 244 246 / var(--tw-bg-opacity));
7681
7615
  }
7682
7616
 
7683
7617
  .hover\:text-blue-600:hover {
@@ -8091,11 +8025,13 @@ select {
8091
8025
  stroke: #FFFFFF;
8092
8026
  }
8093
8027
 
8094
- @media (min-width: 600px) {
8095
- .tb\:visible {
8096
- visibility: visible;
8028
+ @media (min-width: 360px) {
8029
+ .mb-s\:flex-row {
8030
+ flex-direction: row;
8097
8031
  }
8032
+ }
8098
8033
 
8034
+ @media (min-width: 600px) {
8099
8035
  .tb\:mb-16 {
8100
8036
  margin-bottom: 4rem;
8101
8037
  }
@@ -8194,6 +8130,10 @@ select {
8194
8130
  max-width: 25rem;
8195
8131
  }
8196
8132
 
8133
+ .tb\:max-w-\[289px\] {
8134
+ max-width: 289px;
8135
+ }
8136
+
8197
8137
  .tb\:max-w-\[290px\] {
8198
8138
  max-width: 290px;
8199
8139
  }
@@ -8202,10 +8142,6 @@ select {
8202
8142
  max-width: 530px;
8203
8143
  }
8204
8144
 
8205
- .tb\:max-w-\[289px\] {
8206
- max-width: 289px;
8207
- }
8208
-
8209
8145
  .tb\:grid-cols-2 {
8210
8146
  grid-template-columns: repeat(2, minmax(0, 1fr));
8211
8147
  }
@@ -8250,6 +8186,10 @@ select {
8250
8186
  gap: 31.5rem;
8251
8187
  }
8252
8188
 
8189
+ .tb\:gap-3 {
8190
+ gap: 0.75rem;
8191
+ }
8192
+
8253
8193
  .tb\:gap-x-16 {
8254
8194
  -webkit-column-gap: 4rem;
8255
8195
  column-gap: 4rem;
@@ -8277,6 +8217,10 @@ select {
8277
8217
  border-right-color: rgb(236 237 240 / var(--tw-border-opacity));
8278
8218
  }
8279
8219
 
8220
+ .tb\:p-0 {
8221
+ padding: 0px;
8222
+ }
8223
+
8280
8224
  .tb\:p-10 {
8281
8225
  padding: 2.5rem;
8282
8226
  }
@@ -8285,10 +8229,6 @@ select {
8285
8229
  padding: 4rem;
8286
8230
  }
8287
8231
 
8288
- .tb\:p-0 {
8289
- padding: 0px;
8290
- }
8291
-
8292
8232
  .tb\:px-3 {
8293
8233
  padding-left: 0.75rem;
8294
8234
  padding-right: 0.75rem;
@@ -8727,6 +8667,10 @@ select {
8727
8667
  width: 38%;
8728
8668
  }
8729
8669
 
8670
+ .tb-l\:w-\[520px\] {
8671
+ width: 520px;
8672
+ }
8673
+
8730
8674
  .tb-l\:w-\[62\%\] {
8731
8675
  width: 62%;
8732
8676
  }
@@ -8739,10 +8683,6 @@ select {
8739
8683
  width: 100%;
8740
8684
  }
8741
8685
 
8742
- .tb-l\:w-\[520px\] {
8743
- width: 520px;
8744
- }
8745
-
8746
8686
  .tb-l\:min-w-\[400px\] {
8747
8687
  min-width: 400px;
8748
8688
  }
@@ -8803,24 +8743,10 @@ select {
8803
8743
  border-bottom-right-radius: 1rem;
8804
8744
  }
8805
8745
 
8806
- .tb-l\:border-l {
8807
- border-left-width: 1px;
8808
- }
8809
-
8810
8746
  .tb-l\:border-r {
8811
8747
  border-right-width: 1px;
8812
8748
  }
8813
8749
 
8814
- .tb-l\:border-neutral-200 {
8815
- --tw-border-opacity: 1;
8816
- border-color: rgb(229 231 235 / var(--tw-border-opacity));
8817
- }
8818
-
8819
- .tb-l\:border-l-neutral-200 {
8820
- --tw-border-opacity: 1;
8821
- border-left-color: rgb(229 231 235 / var(--tw-border-opacity));
8822
- }
8823
-
8824
8750
  .tb-l\:border-r-neutral-200 {
8825
8751
  --tw-border-opacity: 1;
8826
8752
  border-right-color: rgb(229 231 235 / var(--tw-border-opacity));
@@ -8839,6 +8765,10 @@ select {
8839
8765
  padding-bottom: 3rem;
8840
8766
  }
8841
8767
 
8768
+ .tb-l\:pb-12 {
8769
+ padding-bottom: 3rem;
8770
+ }
8771
+
8842
8772
  .tb-l\:pl-8 {
8843
8773
  padding-left: 2rem;
8844
8774
  }
@@ -8847,18 +8777,6 @@ select {
8847
8777
  padding-top: 3rem;
8848
8778
  }
8849
8779
 
8850
- .tb-l\:pb-9 {
8851
- padding-bottom: 2.25rem;
8852
- }
8853
-
8854
- .tb-l\:pl-32 {
8855
- padding-left: 8rem;
8856
- }
8857
-
8858
- .tb-l\:pb-12 {
8859
- padding-bottom: 3rem;
8860
- }
8861
-
8862
8780
  .tb-l\:text-left {
8863
8781
  text-align: left;
8864
8782
  }
@@ -8955,10 +8873,6 @@ select {
8955
8873
  width: 100%;
8956
8874
  }
8957
8875
 
8958
- .db\:w-\[520px\] {
8959
- width: 520px;
8960
- }
8961
-
8962
8876
  .db\:min-w-\[625px\] {
8963
8877
  min-width: 625px;
8964
8878
  }
@@ -9065,10 +8979,6 @@ select {
9065
8979
  padding-top: 8rem;
9066
8980
  }
9067
8981
 
9068
- .db\:pt-0 {
9069
- padding-top: 0px;
9070
- }
9071
-
9072
8982
  .db\:text-left {
9073
8983
  text-align: left;
9074
8984
  }
@@ -510,7 +510,7 @@ module.exports = {
510
510
  // add more for more breakpoints
511
511
 
512
512
  // body2-medium-style
513
- 'hds-m-body2-medium': ['875rem', {
513
+ 'hds-m-body2-medium': ['0.875rem', {
514
514
  lineHeight: '1.5rem',
515
515
  letterSpacing: '',
516
516
  fontWeight: '500',
@@ -528,7 +528,7 @@ module.exports = {
528
528
  // add more for more breakpoints
529
529
 
530
530
  // body2-semi-bold-style
531
- 'hds-m-body2-semi-bold': ['875rem', {
531
+ 'hds-m-body2-semi-bold': ['0.875rem', {
532
532
  lineHeight: '1.5rem',
533
533
  letterSpacing: '',
534
534
  fontWeight: '600',
@@ -546,7 +546,7 @@ module.exports = {
546
546
  // add more for more breakpoints
547
547
 
548
548
  // body2-bold-style
549
- 'hds-m-body2-bold': ['875rem', {
549
+ 'hds-m-body2-bold': ['0.875rem', {
550
550
  lineHeight: '1.5rem',
551
551
  letterSpacing: '',
552
552
  fontWeight: '700',