hds-web 1.4.2 → 1.4.3
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 +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/HDS/components/Avatars/hasConAv.js +2 -2
- package/src/styles/tailwind.css +8 -0
package/package.json
CHANGED
@@ -7,13 +7,13 @@ export default function HasConAvatar({ name, designation, size, imageUrl }) {
|
|
7
7
|
return (
|
8
8
|
<div className={`tb:max-w-[289px] group rounded-3xl flex items-center justify-between bg-neutral-0 tb:inline-flex tb:flex-col shadow tb:min-w-[18rem]`}>
|
9
9
|
|
10
|
-
<div className="px-5 py-[30px] tb:p-0 text-left tb:flex-col min-h-[
|
10
|
+
<div className="px-5 py-[30px] tb:p-0 text-left tb:flex-col min-h-[120px] tb:flex tb:items-center tb:px-8 tb:pb-8 tb:mt-8 tb:ml-0 tb:text-center">
|
11
11
|
<div className=' text-hds-m-body1c-bold tb:text-hds-t-h5 db:text-hds-d-h5 text-blue-400'>{name}</div>
|
12
12
|
<div className=' text-hds-m-body3c-medium tb:text-hds-t-h7 db:text-hds-d-h7 text-blue-800 uppercase'>{designation}</div>
|
13
13
|
</div>
|
14
14
|
<div className='relative self-center'>
|
15
15
|
<img
|
16
|
-
className={`inline-block min-w-[144px] w-[9rem] tb:min-w-[18rem] tb:rounded border-neutral-0
|
16
|
+
className={`inline-block min-w-[144px] w-[9rem] tb:min-w-[18rem] tb:rounded-3xl border-neutral-0`}
|
17
17
|
src={imageUrl}
|
18
18
|
/>
|
19
19
|
{/* <div className="absolute tb-l:rounded-b-3xl inset-0 group-hover:bg-gradient-to-t group-hover:from-amber-200 group-hover:to-transparent group-hover:opacity-30" ></div> */}
|
package/src/styles/tailwind.css
CHANGED
@@ -1414,6 +1414,10 @@ select {
|
|
1414
1414
|
min-height: 116px;
|
1415
1415
|
}
|
1416
1416
|
|
1417
|
+
.min-h-\[120px\] {
|
1418
|
+
min-height: 120px;
|
1419
|
+
}
|
1420
|
+
|
1417
1421
|
.w-1\/2 {
|
1418
1422
|
width: 50%;
|
1419
1423
|
}
|
@@ -8227,6 +8231,10 @@ select {
|
|
8227
8231
|
border-radius: 0.25rem;
|
8228
8232
|
}
|
8229
8233
|
|
8234
|
+
.tb\:rounded-3xl {
|
8235
|
+
border-radius: 1.5rem;
|
8236
|
+
}
|
8237
|
+
|
8230
8238
|
.tb\:rounded-e-none {
|
8231
8239
|
border-start-end-radius: 0px;
|
8232
8240
|
border-end-end-radius: 0px;
|