fix(virtual-background): Hide scrollbar on loading action.
This commit is contained in:
parent
b1d7debfb9
commit
3453e49182
|
@ -51,6 +51,10 @@
|
||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.modal-dialog-form .virtual-background-loading {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
.file-upload-btn {
|
.file-upload-btn {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
|
@ -139,7 +139,7 @@ function VirtualBackground({ dispatch, t }: Props) {
|
||||||
titleKey = { 'virtualBackground.title' }
|
titleKey = { 'virtualBackground.title' }
|
||||||
width = 'small'>
|
width = 'small'>
|
||||||
{loading ? (
|
{loading ? (
|
||||||
<div>
|
<div className = 'virtual-background-loading'>
|
||||||
<span className = 'loading-content-text'>{t('virtualBackground.pleaseWait')}</span>
|
<span className = 'loading-content-text'>{t('virtualBackground.pleaseWait')}</span>
|
||||||
<Spinner
|
<Spinner
|
||||||
isCompleting = { false }
|
isCompleting = { false }
|
||||||
|
|
Loading…
Reference in New Issue