hds-web 1.25.0 → 1.25.1
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
@@ -12,7 +12,7 @@ export default function EventScheduleCard(props) {
|
|
12
12
|
const scheduleSection = () => (
|
13
13
|
<div className="flex tb:divide-x divide-y tb:divide-y-0 divide-neutral-200 py-6 tb:flex-row flex-col">
|
14
14
|
|
15
|
-
{props.eventDate && <div className="flex flex-col tb:pr-6 pb-4 tb:pb-0">
|
15
|
+
{props.eventDate && <div className="flex flex-col tb:pr-6 pb-4 tb:pb-0 gap-1">
|
16
16
|
<div className="flex gap-2">
|
17
17
|
<Icon height='h-[18px] w-[18px]' variant='calendar' strokeClass='stroke-neutral-600' />
|
18
18
|
<Typography textStyle='h6' className='capitalize text-neutral-600' >WHEN</Typography>
|
@@ -21,7 +21,7 @@ export default function EventScheduleCard(props) {
|
|
21
21
|
{props.eventDate}
|
22
22
|
</div>
|
23
23
|
</div>}
|
24
|
-
|
24
|
+
{props.eventTime && <div className="flex flex-col tb:px-6 py-4 tb:py-0 gap-1">
|
25
25
|
<div className="flex gap-2">
|
26
26
|
<Icon height='h-[18px] w-[18px]' variant='clock' strokeClass='stroke-neutral-600' />
|
27
27
|
<Typography textStyle='h6' className='capitalize text-neutral-600' >TIME</Typography>
|
@@ -30,7 +30,7 @@ export default function EventScheduleCard(props) {
|
|
30
30
|
{props.eventTime}
|
31
31
|
</div>
|
32
32
|
</div>}
|
33
|
-
{props.eventLocation && <div className="flex flex-col tb:px-6 py-4 tb:py-0 ">
|
33
|
+
{props.eventLocation && <div className="flex flex-col tb:px-6 py-4 tb:py-0 gap-1 ">
|
34
34
|
<div className="flex gap-2">
|
35
35
|
<Icon height='h-[18px] w-[18px]' variant='markerpin03' strokeClass='stroke-neutral-600' />
|
36
36
|
<Typography textStyle='h6' className='capitalize text-neutral-600' >WHERE</Typography>
|