diff --git a/src/Header.module.css b/src/Header.module.css
index 00697fdc..511064ec 100644
--- a/src/Header.module.css
+++ b/src/Header.module.css
@@ -27,6 +27,14 @@
display: flex;
}
+.rightNav > * {
+ margin-right: 24px;
+}
+
+.rightNav > :last-child {
+ margin-right: 0;
+}
+
.userName {
font-weight: 600;
margin-right: 8px;
@@ -44,8 +52,8 @@
flex-shrink: 0;
}
-@media(min-width: 800px) {
+@media (min-width: 800px) {
.header {
height: 98px;
}
-}
\ No newline at end of file
+}
diff --git a/src/RoomButton.jsx b/src/RoomButton.jsx
index 5c801326..fc7b44bd 100644
--- a/src/RoomButton.jsx
+++ b/src/RoomButton.jsx
@@ -7,8 +7,8 @@ import { ReactComponent as VideoIcon } from "./icons/Video.svg";
import { ReactComponent as DisableVideoIcon } from "./icons/DisableVideo.svg";
import { ReactComponent as HangupIcon } from "./icons/Hangup.svg";
import { ReactComponent as SettingsIcon } from "./icons/Settings.svg";
-import { ReactComponent as GridIcon } from "./icons/Grid.svg";
-import { ReactComponent as SpeakerIcon } from "./icons/Speaker.svg";
+import { ReactComponent as FreedomIcon } from "./icons/Freedom.svg";
+import { ReactComponent as SpotlightIcon } from "./icons/Spotlight.svg";
import { ReactComponent as ScreenshareIcon } from "./icons/Screenshare.svg";
import { ReactComponent as ChevronIcon } from "./icons/Chevron.svg";
@@ -127,7 +127,7 @@ export function HeaderButton({ on, className, children, ...rest }) {
export function SettingsButton(props) {
return (
-
+
);
}
@@ -136,9 +136,9 @@ export function LayoutToggleButton({ layout, ...rest }) {
return (
{layout === "spotlight" ? (
-
+
) : (
-
+
)}
);
diff --git a/src/RoomButton.module.css b/src/RoomButton.module.css
index ed38c28f..95471aa8 100644
--- a/src/RoomButton.module.css
+++ b/src/RoomButton.module.css
@@ -44,22 +44,12 @@ limitations under the License.
background-color: #ffffff;
}
-.headerButton {
- width: 32px;
- height: 32px;
- border-radius: 32px;
-}
-
.headerButton svg * {
fill: #8e99a4;
}
-.headerButton:hover {
- background-color: #8d97a5;
-}
-
.headerButton:hover svg * {
- fill: #394049;
+ fill: #8d97a5;
}
.headerButton.on svg * {
diff --git a/src/icons/Freedom.svg b/src/icons/Freedom.svg
new file mode 100644
index 00000000..ea4d372c
--- /dev/null
+++ b/src/icons/Freedom.svg
@@ -0,0 +1,6 @@
+
diff --git a/src/icons/Grid.svg b/src/icons/Grid.svg
deleted file mode 100644
index ea605f06..00000000
--- a/src/icons/Grid.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
diff --git a/src/icons/Speaker.svg b/src/icons/Spotlight.svg
similarity index 100%
rename from src/icons/Speaker.svg
rename to src/icons/Spotlight.svg