diff --git a/packages/theme/styles/button.scss b/packages/theme/styles/button.scss index 883b6122ed..79798aa588 100644 --- a/packages/theme/styles/button.scss +++ b/packages/theme/styles/button.scss @@ -181,6 +181,7 @@ min-height: 0; } .hulyStatusBarButton { + overflow: hidden; gap: var(--spacing-1); padding: var(--spacing-0_25) var(--spacing-0_25) var(--spacing-0_25) var(--spacing-1); height: 1.625rem; diff --git a/plugins/love-resources/src/components/ParticipantView.svelte b/plugins/love-resources/src/components/ParticipantView.svelte index 94f2bed00b..1614b6c071 100644 --- a/plugins/love-resources/src/components/ParticipantView.svelte +++ b/plugins/love-resources/src/components/ParticipantView.svelte @@ -16,8 +16,9 @@ import { Person, formatName } from '@hcengineering/contact' import { Avatar, personByIdStore } from '@hcengineering/contact-resources' import { Ref } from '@hcengineering/core' - import { Icon, Loading } from '@hcengineering/ui' + import { Loading } from '@hcengineering/ui' import love from '../plugin' + import MicDisabled from './icons/MicDisabled.svelte' export let _id: string export let name: string @@ -57,10 +58,10 @@