diff --git a/src/Input.module.css b/src/Input.module.css
index c71c04e7..2dde3afd 100644
--- a/src/Input.module.css
+++ b/src/Input.module.css
@@ -95,6 +95,7 @@
-webkit-box-sizing: border-box;
box-sizing: border-box;
text-align: center;
+ font-weight: 700;
}
.button:hover {
diff --git a/src/Room.jsx b/src/Room.jsx
index 8024e7ec..5b56701a 100644
--- a/src/Room.jsx
+++ b/src/Room.jsx
@@ -26,7 +26,8 @@ import {
MicButton,
VideoButton,
} from "./RoomButton";
-import { Header, LeftNav, RightNav } from "./Header";
+import { Header, LeftNav, RightNav, CenterNav } from "./Header";
+import { Button } from "./Input";
function useQuery() {
const location = useLocation();
@@ -97,9 +98,9 @@ export function Room({ manager }) {
{member.name}
))}
-
)}
{!loading && room && joined && participants.length === 0 && (
diff --git a/src/Room.module.css b/src/Room.module.css
index 2f10ec58..08c945d2 100644
--- a/src/Room.module.css
+++ b/src/Room.module.css
@@ -35,21 +35,6 @@ limitations under the License.
padding-left: 0;
}
-.joinRoom button {
- border: none;
- background: green;
- color: white;
- font-size: 16px;
- font-weight: bold;
- padding: 8px 16px;
- border-radius: 4px;
- cursor: pointer;
-}
-
-.joinRoom button:hover, .joinRoom button:active {
- background: darkgreen;
-}
-
.centerMessage {
display: flex;
flex: 1;
diff --git a/src/RoomButton.module.css b/src/RoomButton.module.css
index fd5dc21d..88740e37 100644
--- a/src/RoomButton.module.css
+++ b/src/RoomButton.module.css
@@ -23,6 +23,7 @@ limitations under the License.
justify-content: center;
align-items: center;
padding: 0;
+ border: none;
}
.roomButton:hover {
@@ -46,6 +47,7 @@ limitations under the License.
background-color: transparent;
border-radius: 32px;
padding: 0;
+ border: none;
}
.headerButton:hover {