diff --git a/custom/fitness-demo/components/Call/InviteOthers.js b/custom/fitness-demo/components/Call/InviteOthers.js
new file mode 100644
index 0000000..0d8590c
--- /dev/null
+++ b/custom/fitness-demo/components/Call/InviteOthers.js
@@ -0,0 +1,67 @@
+import React from 'react';
+import Button from '@custom/shared/components/Button';
+import { Card, CardBody, CardHeader } from '@custom/shared/components/Card';
+import { TextInput } from '@custom/shared/components/Input';
+import Tile from '@custom/shared/components/Tile';
+import { DEFAULT_ASPECT_RATIO } from '@custom/shared/constants';
+import { useParticipants } from '@custom/shared/contexts/ParticipantsProvider';
+
+export const InviteOthers = () => {
+ const { localParticipant } = useParticipants();
+
+ return (
+
+export const Card = ({ children, className, variant }) => (
+
{children}
);
@@ -26,7 +33,6 @@ export const CardHeader = ({ children }) => (
h2 {
font-size: 1.375rem;
margin: 0px;
- color: var(--text-default);
}
& + :global(.card-body) {
diff --git a/custom/shared/components/Input/Input.js b/custom/shared/components/Input/Input.js
index 947334a..bd72bd6 100644
--- a/custom/shared/components/Input/Input.js
+++ b/custom/shared/components/Input/Input.js
@@ -113,7 +113,7 @@ const InputContainer = ({ children, prefix, className }) => (
opacity: 1;
}
.dark :global(input)::-moz-placeholder {
- ccolor: var(--text-mid);
+ color: var(--text-mid);
opacity: 1;
}
.dark :global(input)::-ms-input-placeholder {
@@ -126,6 +126,12 @@ const InputContainer = ({ children, prefix, className }) => (
border: 0px;
box-shadow: none;
}
+
+ .border :global(input) {
+ background: transparent;
+ border: 1px solid var(--reverse);
+ color: var(--reverse);
+ }
`}
);