hds-web 1.34.0 → 1.34.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
@@ -117,6 +117,10 @@ export default function HeroLinkCard(props) {
|
|
117
117
|
);
|
118
118
|
};
|
119
119
|
|
120
|
+
const videoPlayerClass = props?.isLargeVideoPlayer
|
121
|
+
? "grid items-center relative db:max-w-[600px] tb:w-3/5 transition-opacity duration-700 ease-linear "
|
122
|
+
: "grid items-center relative db:max-w-[500px] tb:w-1/2 transition-opacity duration-700 ease-linear ";
|
123
|
+
|
120
124
|
return (
|
121
125
|
<div>
|
122
126
|
<div className="flex flex-col-reverse tb-l:flex tb-l:flex-row tb-l:justify-between gap-4">
|
@@ -127,7 +131,7 @@ export default function HeroLinkCard(props) {
|
|
127
131
|
>
|
128
132
|
{props && tabCard(props)}
|
129
133
|
</div>
|
130
|
-
<div className=
|
134
|
+
<div className={videoPlayerClass}>
|
131
135
|
<Typography
|
132
136
|
textStyle="h2"
|
133
137
|
as="h2"
|