Skip to content

Commit

Permalink
Update video for float
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmoltin committed Oct 7, 2024
1 parent 282842e commit b3640f6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions docs/commerce-manager/account-management/accounts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ sidebar_position: 10
---
import Video from "/src/components/CardDisplay/video"

In an Elastic Path Commerce Cloud store, sellers can create accounts using Commerce Manager and view the purchase history and the addresses associated with an account. To update the membership limit, see [Updating Account Membership Settings](/docs/commerce-manager/settings/general-settings#updating-address-form-settings).
<Video
mediaSrc="https://www.youtube.com/embed/IqAiqg-d--Y"
mediaType="embed"
title="Account Management in Commerce Manager"
className="float-right w-1/3"
size="400px"
float={"float-right"}
/>

In an Elastic Path Commerce Cloud store, sellers can create accounts using Commerce Manager and view the purchase history and the addresses associated with an account. To update the membership limit, see [Updating Account Membership Settings](/docs/commerce-manager/settings/general-settings#updating-address-form-settings).

## Creating Accounts

1. Go to **CUSTOMERS AND ACCOUNTS > Accounts**.
Expand Down
4 changes: 2 additions & 2 deletions src/components/CardDisplay/video.jsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React from 'react';
import EmbedVideo from '../EmbedVideo'; // Import the new EmbedVideo component

const Video = ({ mediaSrc, mediaType, title, className }) => { return (
<div className={`${className}`}>
const Video = ({ mediaSrc, mediaType, title, float, size }) => { return (
<div className={`w-[${size}] ${float}`}>
<div
className={`block aspect-video rounded-3xl overflow-hidden p-0 m-6 shadow-lg no-underline hover:no-underline dark:bg-gray-900`}
>
Expand Down

0 comments on commit b3640f6

Please sign in to comment.