Merge pull request 'yangjie' (#34) from yangjie into master
Reviewed-on: #34
This commit is contained in:
commit
11072711b1
|
|
@ -11,6 +11,7 @@
|
|||
color: #EEEEEE;
|
||||
font-size: 16px;
|
||||
margin-right: 10px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -420,12 +420,13 @@
|
|||
.meetingContentSwiperCardShare {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
top: 6%;
|
||||
z-index: 2;
|
||||
transform: translate(-50%, -50%);
|
||||
transform: translate(-50%, 0%);
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
color: white;
|
||||
padding: 10px 20px;
|
||||
font-size: 12px;
|
||||
padding: 4px 10px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -787,7 +787,7 @@ const Meeting: React.FC = () => {
|
|||
label: row.deviceName
|
||||
}
|
||||
}),
|
||||
playBackDeviceId: res[1].ecordingList.find((row: any) => row.deviceId === setting.playBackDeviceId) ? setting.playBackDeviceId : res[1].playBackList.length ? res[1].playBackList[0].deviceId : null,
|
||||
playBackDeviceId: res[1].playBackList.find((row: any) => row.deviceId === setting.playBackDeviceId) ? setting.playBackDeviceId : res[1].playBackList.length ? res[1].playBackList[0].deviceId : null,
|
||||
ecordingVolume: res[1].ecordingVolume
|
||||
}
|
||||
window.electron.onInvoke('sendDrivers', {
|
||||
|
|
|
|||
Loading…
Reference in New Issue