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