diff --git a/public/favicon.ico b/public/favicon.ico
index bcd5dfd..3fb8ff0 100644
Binary files a/public/favicon.ico and b/public/favicon.ico differ
diff --git a/public/index.html b/public/index.html
index b863281..1fc5dbd 100644
--- a/public/index.html
+++ b/public/index.html
@@ -24,7 +24,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
-
+
+ Explore more ways to customize this call in the Daily docs.
+
{
!message
diff --git a/src/components/CallMessage/CallMessage.css b/src/components/CallMessage/CallMessage.css
index b22db0a..0f59c95 100644
--- a/src/components/CallMessage/CallMessage.css
+++ b/src/components/CallMessage/CallMessage.css
@@ -5,7 +5,7 @@
left: 50%;
position: absolute;
transform: translate(-50%, -50%);
- color: #ffffff;
+ color: var(--white);
text-align: center;
font-size: 14px;
line-height: 17px;
@@ -13,7 +13,7 @@
.call-message.error {
color: #d81a1a;
- background-color: #ffffff;
+ background-color: var(--white);
}
.call-message-header {
diff --git a/src/components/Chat/Chat.css b/src/components/Chat/Chat.css
index be04c67..da07cd4 100644
--- a/src/components/Chat/Chat.css
+++ b/src/components/Chat/Chat.css
@@ -1,7 +1,8 @@
.chat {
position: absolute;
- right: 10px;
- bottom: 75px;
+ left: 150px;
+ bottom: 0px;
+ top: 350px;
width: 250px;
height: calc(100% - 150px);
background-color: #f2f2f2;
diff --git a/src/components/StartButton/StartButton.css b/src/components/StartButton/StartButton.css
index 0e61fef..98edbb9 100644
--- a/src/components/StartButton/StartButton.css
+++ b/src/components/StartButton/StartButton.css
@@ -1,16 +1,16 @@
-.start-button {
- padding: 20px 30px;
- position: absolute;
- background: #ffffff;
- font-family: Helvetica Neue;
- font-style: normal;
- font-weight: normal;
- font-size: 14px;
- line-height: 17px;
- text-align: center;
- color: #4a4a4a;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- background-color: #ffffff;
-}
+/* .start-button {
+ padding: 20px 30px;
+ position: absolute;
+ background: #ffffff;
+ font-family: Helvetica Neue;
+ font-style: normal;
+ font-weight: normal;
+ font-size: 14px;
+ line-height: 17px;
+ text-align: center;
+ color: #4a4a4a;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ background-color: #ffffff;
+} */
diff --git a/src/components/StartButton/StartButton.js b/src/components/StartButton/StartButton.js
index 8521e65..fcc3b51 100644
--- a/src/components/StartButton/StartButton.js
+++ b/src/components/StartButton/StartButton.js
@@ -1,5 +1,5 @@
import React from 'react';
-import './StartButton.css';
+// import './StartButton.css';
/**
* Props:
@@ -9,11 +9,11 @@ import './StartButton.css';
export default function StartButton(props) {
return (
- Click to start a call
+ Start call
);
}
diff --git a/src/components/Tray/Tray.css b/src/components/Tray/Tray.css
index 7629a0a..ecdfbe1 100644
--- a/src/components/Tray/Tray.css
+++ b/src/components/Tray/Tray.css
@@ -1,8 +1,20 @@
.tray {
- flex: none;
+ /* flex: none;
height: 60px;
background-color: #f2f2f2;
padding: 0 10px;
display: flex;
+ width: 100%;
+ align-items: center; */
+
+ flex: none;
+ height: 55%;
+ top: 105px;
+ width: 40px;
+ background-color: #f2f2f2;
+ padding: 0 10px;
+ display: flex;
+ position: absolute;
+ flex-direction: column;
align-items: center;
}
diff --git a/src/images/github@icons8.png b/src/images/github@icons8.png
new file mode 100644
index 0000000..4b2cb5c
Binary files /dev/null and b/src/images/github@icons8.png differ
diff --git a/src/images/logo@2x.png b/src/images/logo@2x.png
new file mode 100644
index 0000000..584b84d
Binary files /dev/null and b/src/images/logo@2x.png differ
diff --git a/src/index.css b/src/index.css
index ec2585e..63e550d 100644
--- a/src/index.css
+++ b/src/index.css
@@ -1,8 +1,9 @@
+:root {
+ --fontFamily: GraphikRegular, 'Helvetica Neue', Sans-Serif;
+}
+
body {
margin: 0;
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
- 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
- sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}