diff --git a/front/dist/resources/logos/meet.svg b/front/dist/resources/logos/meet.svg
new file mode 100644
index 00000000..787134e1
--- /dev/null
+++ b/front/dist/resources/logos/meet.svg
@@ -0,0 +1,49 @@
+
+
+
+
diff --git a/front/src/Components/EmbedScreens/CoWebsiteThumbnailSlot.svelte b/front/src/Components/EmbedScreens/CoWebsiteThumbnailSlot.svelte
index e5c3c22e..809d1985 100644
--- a/front/src/Components/EmbedScreens/CoWebsiteThumbnailSlot.svelte
+++ b/front/src/Components/EmbedScreens/CoWebsiteThumbnailSlot.svelte
@@ -19,7 +19,9 @@
const urlObject = new URL(coWebsiteUrl);
onMount(() => {
- icon.src = `${ICON_URL}/icon?url=${urlObject.hostname}&size=64..96..256&fallback_icon_color=14304c`;
+ icon.src = coWebsite.jitsi
+ ? "/resources/logos/meet.svg"
+ : `${ICON_URL}/icon?url=${urlObject.hostname}&size=64..96..256&fallback_icon_color=14304c`;
icon.alt = coWebsite.altMessage ?? urlObject.hostname;
icon.onload = () => {
iconLoaded = true;
@@ -34,7 +36,7 @@
const coWebsites = $coWebsitesNotAsleep;
const newMain = $highlightedEmbedScreen ?? coWebsites.length > 1 ? coWebsites[1] : undefined;
if (newMain) {
- coWebsiteManager.goToMain(coWebsite);
+ coWebsiteManager.goToMain(newMain);
}
} else {
highlightedEmbedScreen.toggleHighlight({
@@ -79,6 +81,7 @@
diff --git a/front/src/Components/WarningContainer/WarningContainer.svelte b/front/src/Components/WarningContainer/WarningContainer.svelte
index dd740eb5..d72e7497 100644
--- a/front/src/Components/WarningContainer/WarningContainer.svelte
+++ b/front/src/Components/WarningContainer/WarningContainer.svelte
@@ -38,7 +38,6 @@
right: 0;
margin-left: auto;
margin-right: auto;
- transform: translate(-50%, 0);
font-family: Lato;
min-width: 300px;
opacity: 0.9;