diff --git a/src/frontend/src/features/rooms/livekit/components/Effects.tsx b/src/frontend/src/features/rooms/livekit/components/Effects.tsx
index eb954167..b46ce0d4 100644
--- a/src/frontend/src/features/rooms/livekit/components/Effects.tsx
+++ b/src/frontend/src/features/rooms/livekit/components/Effects.tsx
@@ -1,7 +1,7 @@
import { useEffect, useRef, useState } from 'react'
import { useLocalParticipant } from '@livekit/components-react'
import { LocalVideoTrack } from 'livekit-client'
-import { Text, P, ToggleButton } from '@/primitives'
+import { Text, P, ToggleButton, Div, H } from '@/primitives'
import { useTranslation } from 'react-i18next'
import { HStack, VStack } from '@/styled-system/jsx'
import {
@@ -92,8 +92,8 @@ export const Effects = () => {
muted
style={{
transform: 'rotateY(180deg)',
- minHeight: '173px',
- borderRadius: '4px',
+ minHeight: '175px',
+ borderRadius: '8px',
}}
/>
) : (
@@ -119,34 +119,53 @@ export const Effects = () => {
)}
- {ProcessorWrapper.isSupported ? (
-
- await toggleBlur(BlurRadius.LIGHT)}
- isSelected={isSelected(BlurRadius.LIGHT)}
- >
- {t('blur.light')}
-
- await toggleBlur(BlurRadius.NORMAL)}
- isSelected={isSelected(BlurRadius.NORMAL)}
- >
- {t('blur.normal')}
-
-
- ) : (
- {t('notAvailable')}
- )}
+
+
+ {t('heading')}
+
+ {ProcessorWrapper.isSupported ? (
+
+ await toggleBlur(BlurRadius.LIGHT)}
+ isSelected={isSelected(BlurRadius.LIGHT)}
+ >
+ {t('blur.light')}
+
+ await toggleBlur(BlurRadius.NORMAL)}
+ isSelected={isSelected(BlurRadius.NORMAL)}
+ >
+ {t('blur.normal')}
+
+
+ ) : (
+ {t('notAvailable')}
+ )}
+
)
}
diff --git a/src/frontend/src/locales/de/rooms.json b/src/frontend/src/locales/de/rooms.json
index 09fe50ea..21b7e049 100644
--- a/src/frontend/src/locales/de/rooms.json
+++ b/src/frontend/src/locales/de/rooms.json
@@ -76,6 +76,7 @@
"effects": {
"activateCamera": "",
"notAvailable": "",
+ "heading": "",
"blur": {
"light": "",
"normal": "",
diff --git a/src/frontend/src/locales/en/rooms.json b/src/frontend/src/locales/en/rooms.json
index ca12f331..68afa747 100644
--- a/src/frontend/src/locales/en/rooms.json
+++ b/src/frontend/src/locales/en/rooms.json
@@ -74,6 +74,7 @@
"effects": {
"activateCamera": "Your camera is disabled. Choose an option to enable it.",
"notAvailable": "The blur effect will be available soon on your browser. We're working on it! In the meantime, you can use Google Chrome :(",
+ "heading": "Blur",
"blur": {
"light": "Light blur",
"normal": "Blur",
diff --git a/src/frontend/src/locales/fr/rooms.json b/src/frontend/src/locales/fr/rooms.json
index 1378b7f2..36cc5779 100644
--- a/src/frontend/src/locales/fr/rooms.json
+++ b/src/frontend/src/locales/fr/rooms.json
@@ -74,6 +74,7 @@
"effects": {
"activateCamera": "Votre camera est désactivée. Choisissez une option pour l'activer.",
"notAvailable": "L'effet de flou sera bientôt disponible sur votre navigateur. Nous y travaillons ! En attendant, vous pouvez utiliser Google Chrome :(",
+ "heading": "Flou",
"blur": {
"light": "Léger flou",
"normal": "Flou",