hds-web 1.16.4 → 1.16.5
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 +5 -5
- package/package.json +1 -1
- package/src/HDS/assets/icons/x-close.svg +1 -1
- package/src/HDS/components/Cards/Dropdown/v3Dropdown.js +2 -2
- package/src/HDS/components/Headers/v3Header.js +394 -970
- package/src/styles/tailwind.css +39 -78
package/package.json
CHANGED
@@ -8,7 +8,7 @@ export default function DropdownA(props) {
|
|
8
8
|
return (
|
9
9
|
<div>
|
10
10
|
|
11
|
-
<div className='tb-l:flex mb-2 tb-l:mb-0 flex w-full
|
11
|
+
<div className='tb-l:flex mb-2 tb-l:mb-0 flex w-full tb-l:bg-neutral-150 flex-col tb-l:flex-row max-w-7xl rounded-2xl '>
|
12
12
|
|
13
13
|
{props.primaryCard &&
|
14
14
|
<div className="">
|
@@ -20,7 +20,7 @@ export default function DropdownA(props) {
|
|
20
20
|
|
21
21
|
</div>
|
22
22
|
}
|
23
|
-
<div className="tb-l:flex-row tb-l:flex mt-2 flex flex-col gap-2 tb:mt-0">
|
23
|
+
<div className="tb-l:flex-row tb-l:flex mt-2 flex flex-col gap-2 tb-l:mt-0">
|
24
24
|
{props.secondaryCardArr && props.secondaryCardArr.map((item, index) => (
|
25
25
|
|
26
26
|
<div key={index} className={'rounded-2xl ' + (item.card_bg) ? 'bg-neutral-0 rounded-2xl' : (HDSColor(item.card_bg))}>
|